1 | <?php |
||
10 | class ElixirExtensionTest extends \PHPUnit_Framework_TestCase |
||
11 | { |
||
12 | const WEB_DIR = __DIR__; |
||
13 | const BUILD_DIR = 'stub'; |
||
14 | |||
15 | /** |
||
16 | * @var |
||
17 | */ |
||
18 | private $elixirExtension; |
||
19 | |||
20 | /** |
||
21 | * Set UP. |
||
22 | * |
||
23 | * Instantiate ElixirExtension for all tests |
||
24 | */ |
||
25 | public function setUp() |
||
29 | |||
30 | /** |
||
31 | * @test |
||
32 | */ |
||
33 | public function getAssetVersionFunctionReturnManifest() |
||
50 | |||
51 | /** |
||
52 | * @test |
||
53 | */ |
||
54 | public function elixirFunctionThrowsErrorWhenFileNotExists() |
||
60 | } |
||
61 |