aboutsummaryrefslogtreecommitdiffstats
path: root/test_volume.c
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2025-02-28 15:03:42 -0500
committerSam Anthony <sam@samanthony.xyz>2025-02-28 15:03:42 -0500
commit24f0677b76ba5be7114031f2d6d6746dcb64ce55 (patch)
tree8db568429667f9b6637916267a8ee484e87020a1 /test_volume.c
parent4835ce7a09dc9012539c33b602e581057d945151 (diff)
downloadvolute-24f0677b76ba5be7114031f2d6d6746dcb64ce55.zip
refactor tests
Diffstat (limited to 'test_volume.c')
-rw-r--r--test_volume.c45
1 files changed, 45 insertions, 0 deletions
diff --git a/test_volume.c b/test_volume.c
new file mode 100644
index 0000000..1dac319
--- /dev/null
+++ b/test_volume.c
@@ -0,0 +1,45 @@
+#include <assert.h>
+#include <stdio.h>
+
+#include "test.h"
+#include "unit.h"
+
+void
+test_cubic_centimetre(void) {
+ assert(0);
+}
+
+void
+test_litre(void) {
+ assert(0);
+}
+
+void
+test_cubic_metre(void) {
+ assert(0);
+}
+
+void
+test_cubic_inch(void) {
+ assert(0);
+}
+
+void
+test_as_cubic_centimetre(void) {
+ assert(0);
+}
+
+void
+test_as_litre(void) {
+ assert(0);
+}
+
+void
+test_as_cubic_metre(void) {
+ assert(0);
+}
+
+void
+test_as_cubic_inch(void) {
+ assert(0);
+}