~ubuntu-branches/ubuntu/natty/aspectj/natty

« back to all changes in this revision

Viewing changes to org.aspectj/modules/org.aspectj.ajdt.core/testsrc/org/aspectj/ajdt/ajc/AjdtAjcTests.java

  • Committer: Bazaar Package Importer
  • Author(s): Damien Raude-Morvan
  • Date: 2009-10-04 16:37:23 UTC
  • mfrom: (1.1.3 upstream) (3.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20091004163723-ck4y7j7fhjxskkie
Tags: 1.6.6+dfsg-1
* New upstream release.
  - Update 02_use_gjdoc.diff patch
* Update my email address

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* *******************************************************************
2
 
 * Copyright (c) 1999-2001 Xerox Corporation, 
3
 
 *               2002 Palo Alto Research Center, Incorporated (PARC).
4
 
 * All rights reserved. 
5
 
 * This program and the accompanying materials are made available 
6
 
 * under the terms of the Eclipse Public License v1.0 
7
 
 * which accompanies this distribution and is available at 
8
 
 * http://www.eclipse.org/legal/epl-v10.html 
9
 
 *  
10
 
 * Contributors: 
11
 
 *     PARC     initial implementation 
12
 
 * ******************************************************************/
13
 
 
14
 
 
15
 
package org.aspectj.ajdt.ajc;
16
 
 
17
 
import java.io.File;
18
 
 
19
 
import junit.framework.*;
20
 
 
21
 
public class AjdtAjcTests extends TestCase {
22
 
 
23
 
    public static final String TESTDATA_PATH 
24
 
                                = "../org.aspectj.ajdt.core/testdata";
25
 
    public static final File TESTDATA_DIR = new File(TESTDATA_PATH);
26
 
 
27
 
    public static Test suite() { 
28
 
        TestSuite suite = new TestSuite(AjdtAjcTests.class.getName());
29
 
        //$JUnit-BEGIN$
30
 
        suite.addTestSuite(AjdtCommandTestCase.class); 
31
 
        suite.addTestSuite(BuildArgParserTestCase.class); 
32
 
        suite.addTestSuite(ConsoleMessageHandlerTestCase.class); 
33
 
        //$JUnit-END$
34
 
        return suite;  
35
 
    }
36
 
 
37
 
    public AjdtAjcTests(String name) { super(name); }
38
 
 
39
 
}