aboutsummaryrefslogtreecommitdiff
path: root/testcase.go
diff options
context:
space:
mode:
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;
+}