diff options
author | Flu0r1ne <flur01ne@flu0r1ne.net> | 2021-08-03 02:02:40 -0500 |
---|---|---|
committer | Flu0r1ne <flur01ne@flu0r1ne.net> | 2021-08-03 02:02:40 -0500 |
commit | a0b020a78eb0b33965c59460fc093c6959216e44 (patch) | |
tree | 3b2722388ea6b312e927b6066b0831524ba4ed6b /testcase.go | |
download | planr-a0b020a78eb0b33965c59460fc093c6959216e44.tar.xz planr-a0b020a78eb0b33965c59460fc093c6959216e44.zip |
Initial commit with basic build structure
Diffstat (limited to 'testcase.go')
-rw-r--r-- | testcase.go | 21 |
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; +} |