public function Framework_TestCaseTest::testStaticAttributesBackupPost in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/tests/Framework/TestCaseTest.php \Framework_TestCaseTest::testStaticAttributesBackupPost()
@depends testStaticAttributesBackupPre
File
- vendor/
phpunit/ phpunit/ tests/ Framework/ TestCaseTest.php, line 366
Class
- Framework_TestCaseTest
- @since Class available since Release 2.0.0 @covers PHPUnit_Framework_TestCase
Code
public function testStaticAttributesBackupPost() {
$this
->assertNotSame($GLOBALS['singleton'], Singleton::getInstance());
$this
->assertSame(0, self::$_testStatic);
}