Skip to content

Commit

Permalink
Correct file path in unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeEdgar committed Aug 28, 2019
1 parent a610bf6 commit 72c5d4e
Showing 1 changed file with 20 additions and 22 deletions.
42 changes: 20 additions & 22 deletions staedi-impl/src/test/java/io/xlate/edi/schema/StaEDISchemaTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
* Copyright 2017 xlate.io LLC, http://www.xlate.io
*
* 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
* 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
* 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
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
******************************************************************************/
Expand All @@ -25,24 +25,22 @@
@SuppressWarnings({ "resource" })
public class StaEDISchemaTest {

@Test(expected = NullPointerException.class)
public void testSetTypesNullTypes() throws EDISchemaException {
StaEDISchema schema = new StaEDISchema();
schema.setTypes(null);
}
@Test(expected = NullPointerException.class)
public void testSetTypesNullTypes() throws EDISchemaException {
StaEDISchema schema = new StaEDISchema();
schema.setTypes(null);
}

@Test
public void testRootTypeIsLoop() throws EDISchemaException, IOException {
StaEDISchema schema = new StaEDISchema();
InputStream schemaStream =
SchemaUtils.getStreams("X12/00402/control-schema.xml")
.nextElement().openStream();
Map<String, EDIType> types =
StaEDISchemaFactory.loadTypes(schemaStream);
schema.setTypes(types);
@Test
public void testRootTypeIsLoop() throws EDISchemaException, IOException {
StaEDISchema schema = new StaEDISchema();
InputStream schemaStream = SchemaUtils.getStreams("X12/v00402.xml")
.nextElement()
.openStream();
Map<String, EDIType> types = StaEDISchemaFactory.loadTypes(schemaStream);
schema.setTypes(types);

Assert.assertEquals(
EDIType.TYPE_LOOP,
schema.getType(StaEDISchema.MAIN).getTypeCode());
}
Assert.assertEquals(EDIType.TYPE_LOOP,
schema.getType(StaEDISchema.MAIN).getTypeCode());
}
}

0 comments on commit 72c5d4e

Please sign in to comment.