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

org.junit.internal.ExactComparisonCriteria.scala Maven / Gradle / Ivy

The newest version!
/*
 * Ported from https://github.com/junit-team/junit
 */
package org.junit.internal

import org.junit.Assert

class ExactComparisonCriteria extends ComparisonCriteria {
  override protected def assertElementsEqual(expected: AnyRef,
      actual: AnyRef): Unit = {
    Assert.assertEquals(expected, actual)
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy