1 | <?php |
||
10 | class ElixirMixExtensionTest extends \PHPUnit_Framework_TestCase |
||
11 | { |
||
12 | const WEB_DIR = __DIR__.'/stub'; |
||
13 | |||
14 | /** |
||
15 | * @var |
||
16 | */ |
||
17 | private $mixExtension; |
||
18 | |||
19 | /** |
||
20 | * Set UP. |
||
21 | * |
||
22 | * Instantiate ElixirExtension for all tests |
||
23 | */ |
||
24 | public function setUp() |
||
28 | |||
29 | /** |
||
30 | * @test |
||
31 | */ |
||
32 | public function mixFunctionReturnManifest() |
||
47 | |||
48 | /** |
||
49 | * @test |
||
50 | */ |
||
51 | public function elixirFunctionThrowsErrorWhenFileNotExists() |
||
58 | } |
||
59 |