aboutsummaryrefslogtreecommitdiffstats
path: root/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test.c')
-rw-r--r--test.c20
1 files changed, 20 insertions, 0 deletions
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();
+}