All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.coldrye.junit.diff.DiffReportResult Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2018 coldrye.eu, Carsten Klein
 *
 * 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 eu.coldrye.junit.diff;

import java.nio.file.Path;

public class DiffReportResult {

  private static final String NEWLINE = "\n";

  private static final String INDENT = "\t";
  
  private Path basePath;

  private Path origin;

  private Path expected;

  private Path actual;

  private Path patch;

  private Path patched;

  public DiffReportResult(Path basePath, Path origin, Path expected, Path actual, Path patch, Path patched) {

    this.basePath = basePath;
    this.origin = origin;
    this.expected = expected;
    this.actual = actual;
    this.patch = patch;
    this.patched = patched;
  }

  public Path getOrigin() {

    return this.origin;
  }

  public Path getExpected() {

    return expected;
  }

  public Path getActual() {

    return actual;
  }

  public String toString() {

    StringBuilder builder = new StringBuilder();

    builder
      .append(INDENT)
      .append("A report was written to ")
      .append(basePath)
      .append(NEWLINE)

      .append(INDENT)
      .append(INDENT)
      .append(expected.getFileName())
      .append(NEWLINE)

      .append(INDENT)
      .append(INDENT)
      .append(actual.getFileName())
      .append(NEWLINE)

      .append(INDENT)
      .append(INDENT)
      .append(patch.getFileName())
      .append(NEWLINE)

      .append(INDENT)
      .append(INDENT)
      .append(patched.getFileName())
      .append(NEWLINE);

    return builder.toString();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy