Пример #1
0
 public function testNonExistingAttributeValue()
 {
     $sobim = new sobimitem_impl($this->db);
     try {
         $result = $sobim->getBimItemAttributeValue($this->projectGuid, "nonExisting");
         $this->assertFalse(count($result) > 0);
     } catch (Exception $e) {
         $this->assertTrue(true);
     }
 }