diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2025-02-28 15:03:42 -0500 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2025-02-28 15:03:42 -0500 |
| commit | 24f0677b76ba5be7114031f2d6d6746dcb64ce55 (patch) | |
| tree | 8db568429667f9b6637916267a8ee484e87020a1 /test.c | |
| parent | 4835ce7a09dc9012539c33b602e581057d945151 (diff) | |
| download | volute-24f0677b76ba5be7114031f2d6d6746dcb64ce55.zip | |
refactor tests
Diffstat (limited to 'test.c')
| -rw-r--r-- | test.c | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -0,0 +1,20 @@ +#include "test.h" + +int +main(void) { + test_rad_per_sec(); + test_deg_per_sec(); + test_rpm(); + test_as_rad_per_sec(); + test_as_deg_per_sec(); + test_as_rpm(); + + test_cubic_centimetre(); + test_litre(); + test_cubic_metre(); + test_cubic_inch(); + test_as_cubic_centimetre(); + test_as_litre(); + test_as_cubic_metre(); + test_as_cubic_inch(); +} |