From 24f0677b76ba5be7114031f2d6d6746dcb64ce55 Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Fri, 28 Feb 2025 15:03:42 -0500 Subject: refactor tests --- test.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 test.c (limited to 'test.c') diff --git a/test.c b/test.c new file mode 100644 index 0000000..0a0b4a9 --- /dev/null +++ b/test.c @@ -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(); +} -- cgit v1.2.3