dbfe02bfa95a242c19eec209c65dd05440d73d42
[sdc.git] /
1 package org.openecomp.sdc.asdctool.impl.validator.executers;
2
3 import org.junit.Test;
4
5 public class ServiceValidatorExecuterTest {
6
7         private ServiceValidatorExecuter createTestSubject() {
8                 return new ServiceValidatorExecuter();
9         }
10
11         @Test
12         public void testGetName() {
13                 ServiceValidatorExecuter testSubject;
14                 String result;
15
16                 // default test
17                 testSubject = createTestSubject();
18                 result = testSubject.getName();
19         }
20
21         @Test(expected=NullPointerException.class)
22         public void testExecuteValidations() throws Exception {
23                 ServiceValidatorExecuter testSubject;
24                 boolean result;
25
26                 // default test
27                 testSubject = createTestSubject();
28                 result = testSubject.executeValidations();
29         }
30 }