( self )
| 56 | self.assertEqual( h, hs ) |
| 57 | |
| 58 | def testCopyConstructor( self ) : |
| 59 | |
| 60 | h = IECore.MurmurHash() |
| 61 | h.append( 1 ) |
| 62 | h.append( "hello" ) |
| 63 | |
| 64 | self.assertEqual( h, IECore.MurmurHash( h ) ) |
| 65 | self.assertNotEqual( h, IECore.MurmurHash() ) |
| 66 | |
| 67 | def testRepr( self ) : |
| 68 |
nothing calls this directly
no test coverage detected