Ejemplo n.º 1
0
    def test_checktype(self):
        at = AT()
        bdp = BDP()
        ret = at.checktype(bdp)

        self.assertEquals(ret,
                          None)  # should be None without raising an exception
Ejemplo n.º 2
0
 def test_checktype(self):
     at = AT()
     bdp = BDP()
     ret = at.checktype(bdp)
 
     self.assertEquals(ret, None) # should be None without raising an exception
Ejemplo n.º 3
0
 def test_AT_checktype(self):
     """ test AT checktype """
     at = AT()
     bdp = BDP()
     # should be None without raising an exception
     self.assertIsNone(at.checktype(bdp))
Ejemplo n.º 4
0
 def test_AT_checktype(self):
     """ test AT checktype """
     at = AT()
     bdp = BDP()
     # should be None without raising an exception
     self.assertIsNone(at.checktype(bdp))