(self)
| 18 | |
| 19 | class TestRoomPlot(unittest.TestCase): |
| 20 | def test_room_2d(self): |
| 21 | room = pra.ShoeBox([3, 4], max_order=2) |
| 22 | room.add_source([1.4, 2.2]) |
| 23 | room.add_microphone([2.3, 3.5]) |
| 24 | room.plot() |
| 25 | |
| 26 | def test_room_3d(self): |
| 27 | room = pra.ShoeBox([3, 4, 5], max_order=2) |
nothing calls this directly
no test coverage detected