diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2025-03-02 14:11:48 -0500 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2025-03-02 14:11:48 -0500 |
| commit | b4fd126b2c779c800bdf3f2c4a47bd85ade9668a (patch) | |
| tree | 340750397e1398a22e8973c4ff84fa874b8d04d8 /test_mass_flow_rate.c | |
| parent | d885a41eecf4060f507a6408f7f35f6992e8450a (diff) | |
| download | volute-b4fd126b2c779c800bdf3f2c4a47bd85ade9668a.zip | |
mass flow rate tests
Diffstat (limited to 'test_mass_flow_rate.c')
| -rw-r--r-- | test_mass_flow_rate.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test_mass_flow_rate.c b/test_mass_flow_rate.c index fb316dd..6c9a0aa 100644 --- a/test_mass_flow_rate.c +++ b/test_mass_flow_rate.c @@ -6,20 +6,20 @@ void test_kilo_per_sec(void) { - assert(0); + test(kilo_per_sec(123.456), 123.456); } void test_pound_per_min(void) { - assert(0); + test(pound_per_min(123.456), 0.9333117); } void test_as_kilo_per_sec(void) { - assert(0); + test(as_kilo_per_sec(kilo_per_sec(123.456)), 123.456); } void test_as_pound_per_min(void) { - assert(0); + test(as_pound_per_min(pound_per_min(123.456)), 123.456); } |