( self, box, x1, y1, x2, y2 )
| 43 | class TestCamera( unittest.TestCase ) : |
| 44 | |
| 45 | def assertBox2fEqual( self, box, x1, y1, x2, y2 ): |
| 46 | self.assertAlmostEqual( box.min().x, x1 ) |
| 47 | self.assertAlmostEqual( box.min().y, y1 ) |
| 48 | self.assertAlmostEqual( box.max().x, x2 ) |
| 49 | self.assertAlmostEqual( box.max().y, y2 ) |
| 50 | |
| 51 | def test( self ) : |
| 52 |
no test coverage detected