mock interface implement it is just out doc and libPath
authorjaehoon.hyun <jaehoon.hyun@samsung.com>
Wed, 27 Mar 2019 07:26:01 +0000 (16:26 +0900)
committerjaehoon.hyun <jaehoon.hyun@samsung.com>
Wed, 27 Mar 2019 07:26:01 +0000 (16:26 +0900)
src/configuremgr/mock/simulation.go [new file with mode: 0644]

diff --git a/src/configuremgr/mock/simulation.go b/src/configuremgr/mock/simulation.go
new file mode 100644 (file)
index 0000000..fb7baab
--- /dev/null
@@ -0,0 +1,24 @@
+package mockconfiguremgr
+
+import (
+  configuremgr     "configuremgr"
+  confdescription  "configuremgr/description"
+)
+
+func PushConfPathDiscoveryDeviceMock (doc *confdescription.Doc) (err error) {
+  configuremgr.ILog.Println("pushConfPathDiscoveryDeviceMock")
+  configuremgr.ILog.Println(*doc)
+  return
+}
+
+func PushConfPathAppExecuteMock(doc *confdescription.Doc) (err error) {
+  configuremgr.ILog.Println("pushConfPathAppExecuteMock")
+  configuremgr.ILog.Println(*doc)
+  return
+}
+
+func PushLibPathScoringAppMock(libPath string) (err error) {
+  configuremgr.ILog.Println("pushLibPathScoringAppMock")
+  configuremgr.ILog.Println(libPath)
+  return
+}