( self )
| 223 | self.assertNotEqual( h, h2 ) |
| 224 | |
| 225 | def testCopyFrom( self ) : |
| 226 | |
| 227 | h1 = IECore.MurmurHash() |
| 228 | h2 = IECore.MurmurHash() |
| 229 | self.assertEqual( h1, h2 ) |
| 230 | |
| 231 | h1.append( 1 ) |
| 232 | self.assertNotEqual( h1, h2 ) |
| 233 | |
| 234 | h2.copyFrom( h1 ) |
| 235 | self.assertEqual( h1, h2 ) |
| 236 | |
| 237 | def testHashOfEmptyStrings( self ) : |
| 238 |
nothing calls this directly
no test coverage detected