(self)
| 21 | self.actor = tests.tester_actor |
| 22 | |
| 23 | def test_location(self): |
| 24 | self.actor.set_actor_location(1, 1, 1) |
| 25 | location = self.actor.get_actor_location() |
| 26 | self.assertEqual(location, (1, 1, 1)) |
| 27 | |
| 28 | def test_rotation(self): |
| 29 | self.actor.set_actor_rotation(17, 22, 30) |
nothing calls this directly
no outgoing calls
no test coverage detected