function testLazyLoadById()
 {
     $object = $this->_createActiveRecord($annotation = 'Some annotation', $content = 'Some content');
     $object2 = new LazyTestOneTableObject();
     $object2->loadById($object->getId());
     $this->_checkLazyness($object2, $annotation, $content);
 }