lithium\tests\cases\test\UnitTest::testClassNotHasStaticAttributeTrue PHP Метод

testClassNotHasStaticAttributeTrue() публичный Метод

    public function testClassNotHasStaticAttributeTrue()
    {
        $class = '\\lithium\\core\\StaticObject';
        $this->assertTrue($this->test->assertClassNotHasStaticAttribute('foobar', $class));
        $results = $this->test->results();
        $result = array_pop($results);
        $this->assertEqual('pass', $result['result']);
    }
UnitTest