aboutsummaryrefslogtreecommitdiffstats
path: root/test.c
blob: 440ab408b93d3da84400bcc32f64eee296c26b4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#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_pascal();
	test_millibar();
	test_kilopascal();
	test_bar();
	test_psi();
	test_as_pascal();
	test_as_millibar();
	test_as_kilopascal();
	test_as_bar();
	test_as_psi();

	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();

	test_cubic_metre_per_sec();
	test_cubic_metre_per_min();
	test_cubic_foot_per_min();
	test_as_cubic_metre_per_sec();
	test_as_cubic_metre_per_min();
	test_as_cubic_foot_per_min();
}