View Javadoc
1   /*
2    * Licensed under the GPL License. You may not use this file except in compliance with the License.
3    * You may obtain a copy of the License at
4    *
5    *   https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
6    *
7    * THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
8    * WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
9    * PURPOSE.
10   */
11  package psiprobe.controllers.system;
12  
13  import com.codebox.bean.JavaBeanTester;
14  
15  import org.junit.jupiter.api.Test;
16  
17  /**
18   * The Class SysInfoControllerTest.
19   */
20  class SysInfoControllerTest {
21  
22    /**
23     * Javabean tester os info ajax.
24     */
25    @Test
26    void javabeanTesterOsInfoAjax() {
27      JavaBeanTester.builder(OsInfoAjaxController.class)
28          .skip("applicationContext", "supportedMethods").test();
29    }
30  
31    /**
32     * Javabean tester os info.
33     */
34    @Test
35    void javabeanTesterOsInfo() {
36      JavaBeanTester.builder(OsInfoController.class).skip("applicationContext", "supportedMethods")
37          .test();
38    }
39  
40    /**
41     * Javabean tester sys info.
42     */
43    @Test
44    void javabeanTesterSysInfo() {
45      JavaBeanTester.builder(SysInfoController.class).skip("applicationContext", "supportedMethods")
46          .test();
47    }
48  
49    /**
50     * Javabean tester sys props.
51     */
52    @Test
53    void javabeanTesterSysProps() {
54      JavaBeanTester.builder(SysPropsController.class).skip("applicationContext", "supportedMethods")
55          .test();
56    }
57  
58  }