Skip to content

Commit

Permalink
Update WebServiceTestCaseWriterTest.php
Browse files Browse the repository at this point in the history
  • Loading branch information
usernane committed Dec 4, 2024
1 parent 82f7691 commit 1018f07
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public function test00() {
$this->assertEquals(9, $w->getPhpUnitVersion());
$w->writeClass();
$this->assertTrue(class_exists('\\'.$w->getName(true)));
$this->removeClass($w->getAbsolutePath());
unlink($w->getAbsolutePath());
}
/**
* @test
Expand All @@ -34,6 +34,6 @@ public function test01() {
$this->assertTrue(file_exists($w->getAbsolutePath()));
require_once $w->getAbsolutePath();
$this->assertTrue(class_exists('\\'.$w->getName(true)));
$this->removeClass($w->getAbsolutePath());
unlink($w->getAbsolutePath());
}
}

0 comments on commit 1018f07

Please sign in to comment.