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_volume.c | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 test_volume.c (limited to 'test_volume.c') 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 +#include + +#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); +} -- cgit v1.2.3