From 59547f49e965167c8fd1a4bf78ca6d300a4c37ad Mon Sep 17 00:00:00 2001 From: YuanHu Date: Thu, 12 Apr 2018 14:49:18 +0800 Subject: Add AdapterType. DEFAULT: retrive data from local. SDC: retrive data from sdc. Issue-ID: SDC-1212 Change-Id: I53d53f062cbe705738f2f4797621aee465e60fa4 Signed-off-by: YuanHu --- .../workflowdesigner/config/AdapterTypeTest.java | 45 ++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 sdc-workflow-designer-server/src/test/java/org/onap/sdc/workflowdesigner/config/AdapterTypeTest.java (limited to 'sdc-workflow-designer-server/src/test/java/org') diff --git a/sdc-workflow-designer-server/src/test/java/org/onap/sdc/workflowdesigner/config/AdapterTypeTest.java b/sdc-workflow-designer-server/src/test/java/org/onap/sdc/workflowdesigner/config/AdapterTypeTest.java new file mode 100644 index 00000000..fa9de6ea --- /dev/null +++ b/sdc-workflow-designer-server/src/test/java/org/onap/sdc/workflowdesigner/config/AdapterTypeTest.java @@ -0,0 +1,45 @@ +/** + * Copyright (c) 2018 ZTE Corporation. + * All rights reserved. This program and the accompanying materials + * are made available under the Apache License, Version 2.0 + * and the Eclipse Public License v1.0 which both accompany this distribution, + * and are available at http://www.eclipse.org/legal/epl-v10.html + * and http://www.apache.org/licenses/LICENSE-2.0 + * + * Contributors: + * ZTE - initial API and implementation and/or initial documentation + */ +package org.onap.sdc.workflowdesigner.config; + +import static org.junit.Assert.*; + +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +/** + * + */ +public class AdapterTypeTest { + + /** + * @throws java.lang.Exception + */ + @Before + public void setUp() throws Exception {} + + /** + * @throws java.lang.Exception + */ + @After + public void tearDown() throws Exception {} + + @Test + public void test() { + AdapterType at = AdapterType.valueOf("SDC"); + assertEquals(AdapterType.SDC, at); + AdapterType at1 = AdapterType.valueOf("DEFAULT"); + assertEquals(AdapterType.DEFAULT, at1); + } + +} -- cgit 1.2.3-korg