Skip to content

Commit 313e519

Browse files
authored
Update AllTest.php
1 parent 36c9da9 commit 313e519

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/AllTest.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ class AllTest extends \PHPUnit_Framework_TestCase {
1111
*/
1212
public function testAvailability() {
1313
foreach (array(
14-
'tar' => null,
15-
'zipfile' => null
14+
'Tar' => null,
15+
'Zipfile' => null
1616
) as $class => $must_be_instance_of) {
1717
$this->assertTrue(class_exists($class, true), $class . " class doesn't exist");
1818
if ($must_be_instance_of !== null) {
@@ -46,7 +46,7 @@ private function getClassInstance($class) {
4646
*/
4747
public function testMethodsAvailability() {
4848
foreach (array(
49-
'tar' => array(
49+
'Tar' => array(
5050
'openTAR',
5151
'appendTar',
5252
'getFile',
@@ -61,7 +61,7 @@ public function testMethodsAvailability() {
6161
'toTar',
6262
'toTarOutput'
6363
),
64-
'zipfile' => array(
64+
'Zipfile' => array(
6565
'addFile',
6666
'file'
6767
)
@@ -77,7 +77,7 @@ public function testMethodsAvailability() {
7777
*/
7878
public function testVariables() {
7979
foreach (array(
80-
'tar' => array(
80+
'Tar' => array(
8181
'numFiles' => 'null', // int
8282
'files' => 'null' // array
8383
)
@@ -89,4 +89,4 @@ public function testVariables() {
8989
}
9090
}
9191

92-
}
92+
}

0 commit comments

Comments
 (0)