Test motion >>> test_motion()
()
| 136 | |
| 137 | |
| 138 | def test_motion() -> None: |
| 139 | """ |
| 140 | Test motion |
| 141 | |
| 142 | >>> test_motion() |
| 143 | """ |
| 144 | v0, angle = 25, 20 |
| 145 | assert horizontal_distance(v0, angle) == 40.97 |
| 146 | assert max_height(v0, angle) == 3.73 |
| 147 | assert total_time(v0, angle) == 1.74 |
| 148 | |
| 149 | |
| 150 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected