blob: 2453e67998a16f6081b3ec3fa0ca6bedc31ddb70 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.daffodil.usertests
import org.apache.daffodil.tdml.Runner
import org.junit.AfterClass
import org.junit.Test
object TestSepTests {
val testDir = "/org/apache/daffodil/usertests/"
val runner = Runner(testDir, "SepTests.tdml")
@AfterClass def shutDown(): Unit = {
runner.reset
}
}
class TestSepTests {
import TestSepTests._
@Test def test_sep_trailing_1(): Unit = { runner.runOneTest("test_sep_trailing_1") }
@Test def test_sep_anyEmpty_1(): Unit = { runner.runOneTest("test_sep_anyEmpty_1") }
// DAFFODIL-2498 anyEmpty with minOccurs '0', and empty as first occurrence.
@Test def test_sep_anyEmpty_2(): Unit = { runner.runOneTest("test_sep_anyEmpty_2") }
// DAFFODIL-2217 - trailingEmptyStrict violation not detected when maxOccurs is '3'
// @Test def test_sep_trailingEmptyStrict_1(): Unit = { runner.runOneTest("test_sep_trailingEmptyStrict_1") }
@Test def test_sep_trailingEmptyStrict_2(): Unit = {
runner.runOneTest("test_sep_trailingEmptyStrict_2")
}
@Test def test_sep_ssp_never_1(): Unit = { runner.runOneTest("test_sep_ssp_never_1") }
@Test def test_sep_ssp_never_2(): Unit = { runner.runOneTest("test_sep_ssp_never_2") }
@Test def test_sep_ssp_never_3(): Unit = { runner.runOneTest("test_sep_ssp_never_3") }
@Test def test_sep_ssp_never_4_ibm(): Unit = { runner.runOneTest("test_sep_ssp_never_4_ibm") }
@Test def test_sep_ssp_never_4_daffodil(): Unit = {
runner.runOneTest("test_sep_ssp_never_4_daffodil")
}
@Test def test_sep_ssp_never_5(): Unit = { runner.runOneTest("test_sep_ssp_never_5") }
@Test def test_sep_ssp_never_6(): Unit = { runner.runOneTest("test_sep_ssp_never_6") }
@Test def test_sep_ssp_never_7(): Unit = { runner.runOneTest("test_sep_ssp_never_7") }
// DAFFODIL-2791
@Test def test_treatAsMissing_occursIndex(): Unit = {
runner.runOneTest("test_treatAsMissing_occursIndex")
}
}