aboutsummaryrefslogtreecommitdiffstats
path: root/common-app-api/src/test/java/org/openecomp/sdc/common/monitoring/MonitoringEventTest.java
diff options
context:
oid testSetAppid() throws Exception {
- MonitoringEvent testSubject;
- String appid = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setAppid(appid);
- }
-
-
- @Test
- public void testGetAppstat() throws Exception {
- MonitoringEvent testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getAppstat();
- }
-
-
- @Test
- public void testSetAppstat() throws Exception {
- MonitoringEvent testSubject;
- String appstat = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setAppstat(appstat);
- }
-
-
- @Test
- public void testToString() throws Exception {
- MonitoringEvent testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.toString();
- }
-} \ No newline at end of file