about summary refs log tree commit diff
path: root/environment_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'environment_test.go')
-rw-r--r--environment_test.go42
1 files changed, 42 insertions, 0 deletions
diff --git a/environment_test.go b/environment_test.go
new file mode 100644
index 0000000..907bf4e
--- /dev/null
+++ b/environment_test.go
@@ -0,0 +1,42 @@
+package main
+
+import "testing"
+
+func Test_getEnvironment(t *testing.T) {
+	tests := []struct {
+		name string
+	}{
+		// TODO: Add test cases.
+	}
+	for _, tt := range tests {
+		t.Run(tt.name, func(t *testing.T) {
+			getEnvironment()
+		})
+	}
+}
+
+func Test_getEnvironmentVars(t *testing.T) {
+	tests := []struct {
+		name string
+	}{
+		// TODO: Add test cases.
+	}
+	for _, tt := range tests {
+		t.Run(tt.name, func(t *testing.T) {
+			getEnvironmentVars()
+		})
+	}
+}
+
+func Test_getFlags(t *testing.T) {
+	tests := []struct {
+		name string
+	}{
+		// TODO: Add test cases.
+	}
+	for _, tt := range tests {
+		t.Run(tt.name, func(t *testing.T) {
+			getFlags()
+		})
+	}
+}