summaryrefslogtreecommitdiffstats
path: root/docs/teaching/exercises/tests/Test.java
diff options
context:
space:
mode:
authorehilsdal <ehilsdal>2004-11-10 06:03:33 +0000
committerehilsdal <ehilsdal>2004-11-10 06:03:33 +0000
commit90da53cec2fb59df3743822ae79a5b34655a106a (patch)
tree0b50d12403b79b7f40f528d7e2b81d6dc710f9ef /docs/teaching/exercises/tests/Test.java
parentc9363fd12ac1d276af0bb63b87e893c7cef50ecf (diff)
downloadaspectj-90da53cec2fb59df3743822ae79a5b34655a106a.tar.gz
aspectj-90da53cec2fb59df3743822ae79a5b34655a106a.zip
revised with info from OOPSLA 2004:
renaming support.Log.log to support.Log.write renaming test.Test to test.CoreTest (r)ing aspectj clearing up a few random things
Diffstat (limited to 'docs/teaching/exercises/tests/Test.java')
-rw-r--r--docs/teaching/exercises/tests/Test.java79
1 files changed, 0 insertions, 79 deletions
diff --git a/docs/teaching/exercises/tests/Test.java b/docs/teaching/exercises/tests/Test.java
deleted file mode 100644
index 101dc8c55..000000000
--- a/docs/teaching/exercises/tests/Test.java
+++ /dev/null
@@ -1,79 +0,0 @@
-/* *******************************************************************
- * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved.
- * This program and the accompanying materials are made available
- * under the terms of the Common Public License v1.0
- * which accompanies this distribution and is available at
- * http://www.eclipse.org/legal/cpl-v10.html
- *
- * Contributors:
- * PARC initial implementation
- * ******************************************************************/
-
-package tests;
-
-import figures.*;
-
-import junit.framework.*;
-
-public class Test extends TestCase {
-
- public static void main(String[] args) {
- junit.textui.TestRunner.run(Test.class);
- }
-
- Box bb;
- Point p1;
- Point p2;
- Line l1;
- SlothfulPoint sloth1;
- Group g;
-
- public void setUp() {
- p1 = new Point(10, 100);
- p2 = new Point(20, 200);
- l1 = new Line(p1, p2);
- bb = new Box(5, 5, 10, 10);
- sloth1 = new SlothfulPoint(0, 0);
- g = new Group(p1);
- }
-
- public final void testCreate() {
- assertEquals(p1.getX(), 10);
- assertEquals(p1.getY(), 100);
-
- assertEquals(l1.getP1(), p1);
- assertEquals(l1.getP2(), p2);
- }
-
- public final void testSetPoint() {
- p1.setX(20);
- assertEquals(p1.getX(), 20);
- assertEquals(p1.getY(), 100);
-
- p1.setY(10);
- assertEquals(p1.getX(), 20);
- assertEquals(p1.getY(), 10);
- }
-
- public final void testMoveLine1() {
- l1.move(40, 40);
- assertEquals(l1.getP1(), p1);
- assertEquals(l1.getP2(), p2);
-
- assertEquals(p1.getX(), 50);
- assertEquals(p1.getY(), 140);
-
- assertEquals(p2.getX(), 60);
- assertEquals(p2.getY(), 240);
- }
-
- public final void testMoveLine2() {
- l1.move(-10, -10);
- assertEquals(p1.getX(), 0);
- assertEquals(p1.getY(), 90);
-
- assertEquals(p2.getX(), 10);
- assertEquals(p2.getY(), 190);
- }
-}