org.aspectj/docs/teaching/exercises/tests/Test3e.java

40 lines
1.1 KiB
Java
Raw Normal View History

2003-08-29 01:46:06 +02:00
/* *******************************************************************
* Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
* All rights reserved.
* This program and the accompanying materials are made available
2006-06-01 11:33:56 +02:00
* under the terms of the Eclipse Public License v1.0
2003-08-29 01:46:06 +02:00
* which accompanies this distribution and is available at
2006-06-01 11:33:56 +02:00
* http://www.eclipse.org/legal/epl-v10.html
2003-08-29 01:46:06 +02:00
*
* Contributors:
* PARC initial implementation
* ******************************************************************/
package tests;
import figures.*;
import support.Log;
import junit.framework.*;
import java.util.List;
import java.util.Arrays;
public class Test3e extends CoreTest {
2003-08-29 01:46:06 +02:00
public static void main(String[] args) {
junit.textui.TestRunner.run(Test3e.class);
}
public void testDuplicateAdd() {
Log.clear();
Point p1 = new Point(10, 100);
Group g1 = new Group(p1);
try {
Group g2 = new Group(p1);
fail("should have thrown IllegalStateException");
} catch (IllegalStateException ea) {
assertEquals(g1.toString(), ea.getMessage());
}
}
}