( self )
| 40 | class MurmurHashTest( unittest.TestCase ) : |
| 41 | |
| 42 | def testConstructor( self ) : |
| 43 | |
| 44 | h = IECore.MurmurHash() |
| 45 | self.assertEqual( str( h ), "0" * 32 ) |
| 46 | self.assertEqual( h, IECore.MurmurHash() ) |
| 47 | |
| 48 | def testStringConstructor( self ) : |
| 49 |
nothing calls this directly
no test coverage detected