1 /* Copyright (c) 2000-2003, jMock.org. See bundled LICENSE.txt */
2 package org.jmock.dynamic;
3
4 import junit.framework.Assert;
5 import junit.textui.TestRunner;
6
7
8 public class ErrorMessageExamples {
9
10 public static void main(String[] args) {
11 TestRunner.main(new String[]{ErrorMessageExamples.class.getName()});
12 //TODO work out how to build up test methods to be run just by this app
13 }
14
15 public void testUncalledMethodError() {
16 Assert.assertEquals("should not be equa1", "a", "b");
17 }
18 }
This page was automatically generated by Maven