File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed
app/src/test/java/org/lfenergy/compas/scl/data/rest Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change
1
+ // SPDX-FileCopyrightText: 2021 Alliander N.V.
2
+ //
3
+ // SPDX-License-Identifier: Apache-2.0
4
+ package org .lfenergy .compas .scl .data .rest ;
5
+
6
+ import org .junit .jupiter .api .Test ;
7
+
8
+ import static org .junit .jupiter .api .Assertions .assertNotNull ;
9
+
10
+ class CompasSclDataServiceConfigurationTest {
11
+ private CompasSclDataServiceConfiguration configuration = new CompasSclDataServiceConfiguration ();
12
+
13
+ @ Test
14
+ void createElementConverter_WhenCalled_ThenObjectReturned () {
15
+ assertNotNull (configuration .createElementConverter ());
16
+ }
17
+
18
+ @ Test
19
+ void creatSclElementProcessor_WhenCalled_ThenObjectReturned () {
20
+ assertNotNull (configuration .creatSclElementProcessor ());
21
+ }
22
+
23
+ @ Test
24
+ void createSclDataModelMarshaller_WhenCalled_ThenObjectReturned () {
25
+ assertNotNull (configuration .createSclDataModelMarshaller ());
26
+ }
27
+ }
You can’t perform that action at this time.
0 commit comments