diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2025-02-28 14:49:17 -0500 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2025-02-28 14:49:17 -0500 |
| commit | 4835ce7a09dc9012539c33b602e581057d945151 (patch) | |
| tree | f6f5dd9b9f140ee868f169def96afd9b0cd61275 /test_unit.c | |
| parent | 1a4c280aaf00f23aa6a61867494e85f9b888d27f (diff) | |
| download | volute-4835ce7a09dc9012539c33b602e581057d945151.zip | |
failing volume tests
Diffstat (limited to 'test_unit.c')
| -rw-r--r-- | test_unit.c | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/test_unit.c b/test_unit.c index dc7de3e..d19d694 100644 --- a/test_unit.c +++ b/test_unit.c @@ -44,6 +44,48 @@ test_as_rpm(void) { test(as_rpm(rpm(123.456)), 123.456); } + +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); +} + + int main(void) { test_rad_per_sec(); @@ -52,4 +94,13 @@ main(void) { 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(); } |