blob: f3df4c6a9bb96b6598fb7ee8864607f06879db69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
package org.onap.vid.services;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.onap.vid.changeManagement.ChangeManagementRequest;
import org.onap.vid.changeManagement.ChangeManagementResponse;
import org.springframework.http.ResponseEntity;
import junit.framework.Assert;
import static org.junit.Assert.*;
public class ChangeManagementServiceTest {
@Before
public void setUp() throws Exception {
}
@After
public void tearDown() throws Exception {
}
@Test
public void doChangeManagement_requestTypeIsUpdateVnfNotFound_doUpdateAndReturnNull() throws Exception {
}
}
|