/** s-DLIM Extraction test. */
  public void testArrivalRateFileIntoSequence() {

    try {
      ModelExtractor.extractArrivalRateFileIntoSequenceBinarySplits(
          root,
          ArrivalRateReader.readFileToList(TEST_TRACE, 0.0),
          24,
          1,
          "SinTrend",
          "SinTrend",
          "MULT",
          true);
      testOutputModel(0.16, 0.1);
    } catch (CalibrationException e) {
      fail("Model Extractor threw a CalibrationException: " + e.getMessage());
    } catch (IOException e) {
      fail("Did not find arrival rate file.");
    }
  }