Package junit.tests.framework

Source Code of junit.tests.framework.ComparisonFailureTest

package junit.tests.framework;

import junit.framework.ComparisonFailure;
import junit.framework.TestCase;

public class ComparisonFailureTest extends TestCase {
 
  // Most of the tests are in ComparisonCompactorTest
  public void testConnection() {
    ComparisonFailure failure= new ComparisonFailure("warning", "Mary had a little lamb", "Mary had the little lamb");
    assertEquals("warning expected:<Mary had [a] little lamb> but was:<Mary had [the] little lamb>", failure.getMessage());
  }
 
  // This is like an instanceof test.
  public void testThrowing() {
    try {
      assertEquals("a", "b");
    } catch (ComparisonFailure e) {
      return;
    }
    fail();
  }
}
TOP

Related Classes of junit.tests.framework.ComparisonFailureTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.