( self )
| 172 | self.assertTrue( o[i].isSame( l[i] ) ) |
| 173 | |
| 174 | def testHash( self ) : |
| 175 | |
| 176 | o = IECore.ObjectVector() |
| 177 | h = o.hash() |
| 178 | |
| 179 | o.append( IECore.IntData( 10 ) ) |
| 180 | self.assertNotEqual( o.hash(), h ) |
| 181 | |
| 182 | def testHashWithEmptyElements( self ) : |
| 183 |
nothing calls this directly
no test coverage detected