Skip to content

Commit 69e16b0

Browse files
author
Dennis Labordus
committed
Added some test.
Signed-off-by: Dennis Labordus <[email protected]>
1 parent 39bff55 commit 69e16b0

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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+
}

0 commit comments

Comments
 (0)