From faefe284a934bf65fda2e6f61cbbc511b95c3b04 Mon Sep 17 00:00:00 2001 From: Furkan Sahin Date: Tue, 3 Aug 2021 02:02:40 -0500 Subject: Initial commit with basic build structure --- testcase.go | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 testcase.go (limited to 'testcase.go') 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; +} -- cgit v1.2.3