Add new unit tests for java beans
authorGuangrongFu <fu.guangrong@zte.com.cn>
Fri, 17 Feb 2017 09:23:57 +0000 (17:23 +0800)
committerGuangrongFu <fu.guangrong@zte.com.cn>
Fri, 17 Feb 2017 09:26:57 +0000 (17:26 +0800)
Change-Id: I2b10b32f98f066a553446f2e4d4deb274eb3e981
Issue-ID: HOLMES-12
Signed-off-by: GuangrongFu <fu.guangrong@zte.com.cn>
rulemgt/src/test/java/org/openo/holmes/rulemgt/bean/request/RuleCreateRequestTest.java [new file with mode: 0644]
rulemgt/src/test/java/org/openo/holmes/rulemgt/bean/request/RuleDeleteRequestTest.java [new file with mode: 0644]

diff --git a/rulemgt/src/test/java/org/openo/holmes/rulemgt/bean/request/RuleCreateRequestTest.java b/rulemgt/src/test/java/org/openo/holmes/rulemgt/bean/request/RuleCreateRequestTest.java
new file mode 100644 (file)
index 0000000..3f5469d
--- /dev/null
@@ -0,0 +1,58 @@
+/**\r
+ * Copyright 2017 ZTE Corporation.\r
+ *\r
+ * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * you may not use this file except in compliance with the License.\r
+ * You may obtain a copy of the License at\r
+ *\r
+ *     http://www.apache.org/licenses/LICENSE-2.0\r
+ *\r
+ * Unless required by applicable law or agreed to in writing, software\r
+ * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ */\r
+\r
+package org.openo.holmes.rulemgt.bean.request;\r
+\r
+import static org.hamcrest.core.Is.is;\r
+import static org.hamcrest.core.IsEqual.equalTo;\r
+import static org.junit.Assert.*;\r
+\r
+import org.junit.Test;\r
+\r
+public class RuleCreateRequestTest {\r
+\r
+    @Test\r
+    public void getterAndSetter4RuleName(){\r
+        final String rulename = "rulename";\r
+        RuleCreateRequest ruleCreateRequest = new RuleCreateRequest();\r
+        ruleCreateRequest.setRuleName(rulename);\r
+        assertThat(ruleCreateRequest.getRuleName(), equalTo(rulename));\r
+    }\r
+\r
+    @Test\r
+    public void getterAndSetter4Description(){\r
+        final String description = "desc";\r
+        RuleCreateRequest ruleCreateRequest = new RuleCreateRequest();\r
+        ruleCreateRequest.setDescription(description);\r
+        assertThat(ruleCreateRequest.getDescription(), equalTo(description));\r
+    }\r
+\r
+    @Test\r
+    public void getterAndSetter4Content(){\r
+        final String contents = "contents";\r
+        RuleCreateRequest ruleCreateRequest = new RuleCreateRequest();\r
+        ruleCreateRequest.setContent(contents);\r
+        assertThat(ruleCreateRequest.getContent(), equalTo(contents));\r
+    }\r
+\r
+    @Test\r
+    public void getterAndSetter4Enabled(){\r
+        final int enabled = 0;\r
+        RuleCreateRequest ruleCreateRequest = new RuleCreateRequest();\r
+        ruleCreateRequest.setEnabled(enabled);\r
+        assertThat(ruleCreateRequest.getEnabled(), is(enabled));\r
+    }\r
+}
\ No newline at end of file
diff --git a/rulemgt/src/test/java/org/openo/holmes/rulemgt/bean/request/RuleDeleteRequestTest.java b/rulemgt/src/test/java/org/openo/holmes/rulemgt/bean/request/RuleDeleteRequestTest.java
new file mode 100644 (file)
index 0000000..f9a09ff
--- /dev/null
@@ -0,0 +1,33 @@
+/**\r
+ * Copyright 2017 ZTE Corporation.\r
+ *\r
+ * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * you may not use this file except in compliance with the License.\r
+ * You may obtain a copy of the License at\r
+ *\r
+ *     http://www.apache.org/licenses/LICENSE-2.0\r
+ *\r
+ * Unless required by applicable law or agreed to in writing, software\r
+ * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ */\r
+\r
+package org.openo.holmes.rulemgt.bean.request;\r
+\r
+import static org.hamcrest.core.IsEqual.equalTo;\r
+import static org.junit.Assert.*;\r
+\r
+import org.junit.Test;\r
+\r
+\r
+public class RuleDeleteRequestTest {\r
+    @Test\r
+    public void getterAndSetter4RuleId(){\r
+        final String ruleId = "ruleId";\r
+        RuleDeleteRequest ruleDeleteRequest = new RuleDeleteRequest();\r
+        ruleDeleteRequest.setRuleId(ruleId);\r
+        assertThat(ruleDeleteRequest.getRuleId(), equalTo(ruleId));\r
+    }\r
+}
\ No newline at end of file