Code cleanup.

This commit is contained in:
James Cole
2017-03-05 11:19:06 +01:00
parent e5a2e1a8c7
commit 879f74e521
15 changed files with 111 additions and 113 deletions

View File

@@ -19,11 +19,11 @@ class ExampleTest extends TestCase
*
* @return void
*/
public function testBasicTest()
public function testAnotherBasicTest()
{
$response = $this->get('/login');
$response = $this->get('/');
$response->assertStatus(200);
$response->assertStatus(302);
}
/**
@@ -31,10 +31,10 @@ class ExampleTest extends TestCase
*
* @return void
*/
public function testAnotherBasicTest()
public function testBasicTest()
{
$response = $this->get('/');
$response = $this->get('/login');
$response->assertStatus(302);
$response->assertStatus(200);
}
}