aboutsummaryrefslogtreecommitdiff
path: root/testcase.go
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2021-08-03 02:02:40 -0500
committerFurkan Sahin <furkan-dev@proton.me>2021-08-03 02:02:40 -0500
commitfaefe284a934bf65fda2e6f61cbbc511b95c3b04 (patch)
tree3bd6932882454caa982659f4bd506a593c31a9dd /testcase.go
Initial commit with basic build structure
Diffstat (limited to 'testcase.go')
-rw-r--r--testcase.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/testcase.go b/testcase.go
new file mode 100644
index 0000000..02db738
--- /dev/null
+++ b/testcase.go
@@ -0,0 +1,21 @@
+package planr
+
+type TestResult struct {
+ Pass bool
+}
+
+type TestCase struct {
+ Path string
+ Cname string
+ Config TestCaseConfig
+}
+
+func (tc TestCase) ContainsAdapter(name string) bool {
+ for adapter := range tc.Config.adapters_ {
+ if adapter == name {
+ return true;
+ }
+ }
+
+ return false;
+}