Optimize test code.

This commit is contained in:
James Cole
2015-04-07 18:52:15 +02:00
parent f10f5d30bf
commit 05670cf393
4 changed files with 30 additions and 33 deletions

View File

@@ -22,16 +22,6 @@ class TestCase extends Illuminate\Foundation\Testing\TestCase
return $app;
}
/**
* This method is called before the first test of this test class is run.
*
* @since Method available since Release 3.4.0
*/
public static function setUpBeforeClass()
{
parent::setUpBeforeClass();
}
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
@@ -44,7 +34,15 @@ class TestCase extends Illuminate\Foundation\Testing\TestCase
}
/**
* This method is called before the first test of this test class is run.
*
* @since Method available since Release 3.4.0
*/
public static function setUpBeforeClass()
{
parent::setUpBeforeClass();
}
/**
* @param string $class
@@ -61,5 +59,4 @@ class TestCase extends Illuminate\Foundation\Testing\TestCase
}
}