( self )
| 46 | self.assertEqual( h, IECore.MurmurHash() ) |
| 47 | |
| 48 | def testStringConstructor( self ) : |
| 49 | |
| 50 | h = IECore.MurmurHash() |
| 51 | h.append( 1 ) |
| 52 | h.append( "hello" ) |
| 53 | |
| 54 | s = h.toString() |
| 55 | hs = IECore.MurmurHash( s ) |
| 56 | self.assertEqual( h, hs ) |
| 57 | |
| 58 | def testCopyConstructor( self ) : |
| 59 |
nothing calls this directly
no test coverage detected