Example #1
0
 def test_interface(self):
     x = bgThread()
     with pytest.raises(NotImplementedError):
         x.body()
Example #2
0
 def test_body(self):
     x = bgThread()
     with self.assertRaises(NotImplementedError):
         x.body()
 def test_interface(self):
     x = bgThread()
     with self.assertRaises(NotImplementedError):
         x.body()
Example #4
0
 def test_interface(self):
     x = bgThread()
     with pytest.raises(NotImplementedError):
         x.body()