( self )
| 44 | class TestState( unittest.TestCase ) : |
| 45 | |
| 46 | def testConstructor( self ) : |
| 47 | |
| 48 | s = IECoreGL.State( False ) |
| 49 | self.assertTrue( not s.isComplete() ) |
| 50 | |
| 51 | s = IECoreGL.State( True ) |
| 52 | self.assertTrue( s.isComplete() ) |
| 53 | |
| 54 | def testUserAttributes( self ) : |
| 55 |
nothing calls this directly
no test coverage detected