diff options
author | Ritu Sood <Ritu.Sood@intel.com> | 2020-09-11 00:04:32 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-09-11 00:04:32 +0000 |
commit | b9e5d308a5e357d987758005e928f825d773ccca (patch) | |
tree | e8eb4213cce343ea8b2eeec1d8c7eb98f4608eb5 /src/orchestrator/api/projecthandler_test.go | |
parent | 172bebb96ce3ef47f5514c5f7a9a2b70d583f31c (diff) | |
parent | b2c9f4c61d00bf18e7a253c410479f8124640106 (diff) |
Merge "Adding validations for all JSON data across modules"
Diffstat (limited to 'src/orchestrator/api/projecthandler_test.go')
-rw-r--r-- | src/orchestrator/api/projecthandler_test.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/orchestrator/api/projecthandler_test.go b/src/orchestrator/api/projecthandler_test.go index ef5fdf07..5e88bab9 100644 --- a/src/orchestrator/api/projecthandler_test.go +++ b/src/orchestrator/api/projecthandler_test.go @@ -64,6 +64,10 @@ func (m *mockProjectManager) GetAllProjects() ([]moduleLib.Project, error) { return []moduleLib.Project{}, m.Err } +func init() { + projectJSONFile = "../json-schemas/metadata.json" +} + func TestProjectCreateHandler(t *testing.T) { testCases := []struct { label string |