-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#671] Add missing prefix in AnySimpleType extension for TCK
- Loading branch information
1 parent
004640d
commit 454d494
Showing
9 changed files
with
180 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
dmn-core/src/test/java/com/gs/dmn/serialization/DMNVersionTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
* Copyright 2016 Goldman Sachs. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. | ||
* | ||
* You may obtain a copy of the License at | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations under the License. | ||
*/ | ||
package com.gs.dmn.serialization; | ||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
import static org.junit.jupiter.api.Assertions.*; | ||
|
||
public class DMNVersionTest { | ||
@Test | ||
void testFromVersion() { | ||
// Used in client code | ||
assertEquals(DMNVersion.DMN_14, DMNVersion.fromVersion("1.4")); | ||
} | ||
|
||
@Test | ||
void testFromIncorrectVersion() { | ||
// Used in client code | ||
assertThrows(IllegalArgumentException.class, | ||
() -> { | ||
DMNVersion.fromVersion("xxx"); | ||
}); | ||
} | ||
|
||
@Test | ||
void testNamespaceToPrefixMap() { | ||
// Used in client code | ||
assertNotNull(DMNVersion.LATEST.getNamespaceToPrefixMap()); | ||
assertFalse(DMNVersion.LATEST.getNamespaceToPrefixMap().isEmpty()); | ||
} | ||
|
||
@Test | ||
void testPrefixToNamespaceMap() { | ||
// Used in client code | ||
assertNotNull(DMNVersion.LATEST.getPrefixToNamespaceMap()); | ||
assertFalse(DMNVersion.LATEST.getPrefixToNamespaceMap().isEmpty()); | ||
} | ||
} |
48 changes: 48 additions & 0 deletions
48
dmn-core/src/test/java/com/gs/dmn/serialization/TCKVersionTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
* Copyright 2016 Goldman Sachs. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. | ||
* | ||
* You may obtain a copy of the License at | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations under the License. | ||
*/ | ||
package com.gs.dmn.serialization; | ||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
import static org.junit.jupiter.api.Assertions.*; | ||
|
||
class TCKVersionTest { | ||
@Test | ||
void testFromVersion() { | ||
// Used in client code | ||
assertEquals(TCKVersion.TCK_1, TCKVersion.fromVersion("1")); | ||
} | ||
|
||
@Test | ||
void testFromIncorrectVersion() { | ||
// Used in client code | ||
assertThrows(IllegalArgumentException.class, | ||
() -> { | ||
TCKVersion.fromVersion("1.4"); | ||
}); | ||
} | ||
|
||
@Test | ||
void testNamespaceToPrefixMap() { | ||
// Used in client code | ||
assertNotNull(TCKVersion.LATEST.getNamespaceToPrefixMap()); | ||
assertFalse(TCKVersion.LATEST.getNamespaceToPrefixMap().isEmpty()); | ||
} | ||
|
||
@Test | ||
void testPrefixToNamespaceMap() { | ||
// Used in client code | ||
assertNotNull(TCKVersion.LATEST.getPrefixToNamespaceMap()); | ||
assertFalse(TCKVersion.LATEST.getPrefixToNamespaceMap().isEmpty()); | ||
} | ||
} |
Oops, something went wrong.