1 | <?php |
||
9 | class ComposeManagerBuildTest extends PHPUnit_Framework_TestCase |
||
10 | { |
||
11 | public function setUp() |
||
17 | |||
18 | /** |
||
19 | * Test simple build without error |
||
20 | */ |
||
21 | public function testBuild() |
||
26 | |||
27 | /** |
||
28 | * Test build success with one compose file |
||
29 | */ |
||
30 | public function testBuildWithOneComposeFileSpecified() |
||
35 | |||
36 | /** |
||
37 | * Test build success with two compose files |
||
38 | */ |
||
39 | public function testBuildWithTwoComposeFilesSpecified() |
||
44 | |||
45 | /** |
||
46 | * Test simple build without pull |
||
47 | */ |
||
48 | public function testBuildWithoutPull() |
||
53 | |||
54 | /** |
||
55 | * Test simple build with --force-rm |
||
56 | */ |
||
57 | public function testBuildWithForceRm() |
||
62 | |||
63 | /** |
||
64 | * Test simple build with --no-cache |
||
65 | */ |
||
66 | public function testBuildWithNoCache() |
||
71 | |||
72 | /** |
||
73 | * Test simple build with --pull --force-rm --no-cache |
||
74 | */ |
||
75 | public function testBuildWithPullAndForceRmAndNoCache() |
||
81 | } |
||
82 |