aboutsummaryrefslogtreecommitdiffstats
path: root/test_pressure.c
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2025-02-28 17:21:25 -0500
committerSam Anthony <sam@samanthony.xyz>2025-02-28 17:21:25 -0500
commit555849edd9b7053e7197b88e150aa05479df0872 (patch)
treea4b60a4d6842d35ba869ac8586d9d1b769d1784d /test_pressure.c
parentcfe3bdba26ef24830acfe33e5ff424def9cb37b6 (diff)
downloadvolute-555849edd9b7053e7197b88e150aa05479df0872.zip
failing pressure tests
Diffstat (limited to 'test_pressure.c')
-rw-r--r--test_pressure.c54
1 files changed, 54 insertions, 0 deletions
diff --git a/test_pressure.c b/test_pressure.c
new file mode 100644
index 0000000..a64bac9
--- /dev/null
+++ b/test_pressure.c
@@ -0,0 +1,54 @@
+#include <assert.h>
+#include <stdio.h>
+
+#include "test.h"
+
+void
+test_pascal(void) {
+ assert(0);
+}
+
+void
+test_millibar(void) {
+ assert(0);
+}
+
+void
+test_kilopascal(void) {
+ assert(0);
+}
+
+void
+test_bar(void) {
+ assert(0);
+}
+
+void
+test_psi(void) {
+ assert(0);
+}
+
+void
+test_as_pascal(void) {
+ assert(0);
+}
+
+void
+test_as_millibar(void) {
+ assert(0);
+}
+
+void
+test_as_kilopascal(void) {
+ assert(0);
+}
+
+void
+test_as_bar(void) {
+ assert(0);
+}
+
+void
+test_as_psi(void) {
+
+}