GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — rewrite-laravel ( 457f5a...80ad4b )
by Oliver
05:24
created

it_can_browse_transaction_create_form()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 12
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 12
rs 9.4285
cc 1
eloc 4
nc 1
nop 0
1
<?php
2
3
namespace Tests\Feature;
4
5
use Tests\TestCase;
6
use Illuminate\Foundation\Testing\WithoutMiddleware;
7
use Illuminate\Foundation\Testing\DatabaseMigrations;
8
use Illuminate\Foundation\Testing\DatabaseTransactions;
9
10
class TransactionControllerTest extends TestCase
11
{
12
    /**
13
     * A basic test example.
14
     * @test
15
     * @return void
16
     */
17
    public function it_can_browse_transaction_create_form()
18
    {
19
        // Arrange
20
21
        // Act
22
        $response = $this->get('/transactions/create');
23
24
        // Assert
25
        $response->assertStatus(200)
26
            ->assertSee("Add new Transaction");
27
28
    }
29
}
30