aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/controller/test/TestPageControllerTest.java
blob: f47eb40791562f7d414f674b510a8ec3b15159ff (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
30
31
package org.onap.vid.controller.test;

import org.junit.Test;
import org.springframework.web.servlet.ModelAndView;

public class TestPageControllerTest {

    private TestPageController createTestSubject() {
        return new TestPageController();
    }

    @Test
    public void testTestMsoPage() throws Exception {
        TestPageController testSubject;
        ModelAndView result;

        // default test
        testSubject = createTestSubject();
        result = testSubject.testMsoPage();
    }

    @Test
    public void testTestViewEditPage() throws Exception {
        TestPageController testSubject;
        ModelAndView result;

        // default test
        testSubject = createTestSubject();
        result = testSubject.testViewEditPage();
    }
}