1 | <?php |
||
11 | class FileTest extends PHPUnit_Framework_TestCase |
||
12 | { |
||
13 | /** |
||
14 | * @var File |
||
15 | */ |
||
16 | protected $object; |
||
17 | |||
18 | /** |
||
19 | * Sets up the fixture, for example, opens a network connection. |
||
20 | * This method is called before a test is executed. |
||
21 | */ |
||
22 | protected function setUp() |
||
26 | |||
27 | /** |
||
28 | * Tears down the fixture, for example, closes a network connection. |
||
29 | * This method is called after a test is executed. |
||
30 | */ |
||
31 | protected function tearDown() |
||
34 | |||
35 | /** |
||
36 | * @covers ElKuKu\Crowdin\Package\File::add |
||
37 | * @todo Implement testAdd(). |
||
38 | */ |
||
39 | public function testAdd() |
||
46 | |||
47 | /** |
||
48 | * @covers ElKuKu\Crowdin\Package\File::update |
||
49 | * @todo Implement testUpdate(). |
||
50 | */ |
||
51 | public function testUpdate() |
||
58 | |||
59 | /** |
||
60 | * @covers ElKuKu\Crowdin\Package\File::delete |
||
61 | * @todo Implement testDelete(). |
||
62 | */ |
||
63 | public function testDelete() |
||
70 | |||
71 | /** |
||
72 | * @covers ElKuKu\Crowdin\Package\File::export |
||
73 | * @todo Implement testExport(). |
||
74 | */ |
||
75 | public function testExport() |
||
82 | } |
||
83 |