( self )
| 120 | ) |
| 121 | |
| 122 | def testStringRepeatability( self ) : |
| 123 | |
| 124 | h = IECore.MurmurHash() |
| 125 | h.append( "i am a lovely string" ) |
| 126 | |
| 127 | for i in range( 0, 1000 ) : |
| 128 | h2 = IECore.MurmurHash() |
| 129 | h2.append( "i am a lovely string" ) |
| 130 | self.assertEqual( h, h2 ) |
| 131 | |
| 132 | def testStringDifferences( self ) : |
| 133 |
nothing calls this directly
no test coverage detected