示例#1
0
 public function testGetAttributes()
 {
     $test = new UnitTest();
     $attributes = $test->getAttributes();
     $this->assertTrue(count($attributes) > 0);
     foreach ($attributes as $key => $value) {
         $this->assertTrue(is_string($key));
     }
 }