コード例 #1
0
ファイル: CollectionTest.php プロジェクト: versionable/common
 public function testClear()
 {
     $this->object->add(new \stdClass());
     $this->object->clear();
     $this->assertEmpty($this->readAttribute($this->object, 'elements'));
 }