def testGetAttrGood(self): i = ImageI() assert i.loaded assert i.isLoaded() assert not i.name i.name = rstring("name") assert i.name i.setName(None) assert not i.getName() i.copyAnnotationLinks() i.linkAnnotation(omero.model.BooleanAnnotationI())
def testGetAttrGood(self): i = ImageI() self.assert_(i.loaded) self.assert_(i.isLoaded()) self.assert_(not i.name) i.name = rstring("name") self.assert_(i.name) i.setName(None) self.assert_(not i.getName()) i.copyAnnotationLinks() i.linkAnnotation(omero.model.BooleanAnnotationI())
def testSequences(self): img = ImageI() assert img.sizeOfAnnotationLinks() >= 0 img.linkAnnotation(None) img.unload() try: assert not img.sizeOfAnnotationLinks() >= 0 assert len(img.copyAnnotationLinks()) == 0 assert False, "can't reach here" except: # These are true, but can't be tested pass
def testSequences(self): img = ImageI() self.assert_(img.sizeOfAnnotationLinks() >= 0) img.linkAnnotation(None) img.unload() try: self.assert_(not img.sizeOfAnnotationLinks() >= 0) self.assert_(len(img.copyAnnotationLinks()) == 0) self.fail("can't reach here") except: # These are true, but can't be tested pass
def testSequences(self): img = ImageI() self.assert_( img.sizeOfAnnotationLinks() >= 0 ) img.linkAnnotation(None) img.unload() try: self.assert_( not img.sizeOfAnnotationLinks() >= 0 ) self.assert_( len(img.copyAnnotationLinks()) == 0 ) self.fail("can't reach here") except: # These are true, but can't be tested pass