1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Matthew Webster - initial implementation
*******************************************************************************/
package org.aspectj.weaver.loadtime;
import java.net.URL;
import java.net.URLClassLoader;
import junit.framework.TestCase;
public class AjTest extends TestCase {
public void testAj() {
// Aj aj =
new Aj();
}
public void testAjIWeavingContext() {
ClassLoader loader = new URLClassLoader(new URL[] {}, null);
IWeavingContext weavingContext = new DefaultWeavingContext(loader);
// Aj aj =
new Aj(weavingContext);
}
public void testInitialize() {
Aj aj = new Aj();
aj.initialize();
}
public void testPreProcess() {
ClassLoader loader = new URLClassLoader(new URL[] {}, null);
Aj aj = new Aj();
aj.preProcess("Junk", new byte[] {}, loader, null);
}
public void testGetNamespace() {
ClassLoader loader = new URLClassLoader(new URL[] {}, null);
Aj aj = new Aj();
String namespace = aj.getNamespace(loader);
assertEquals("Namespace should be empty", "", namespace);
}
public void testGeneratedClassesExist() {
ClassLoader loader = new URLClassLoader(new URL[] {}, null);
Aj aj = new Aj();
boolean exist = aj.generatedClassesExist(loader);
assertFalse("There should be no generated classes", exist);
}
public void testFlushGeneratedClasses() {
ClassLoader loader = new URLClassLoader(new URL[] {}, null);
Aj aj = new Aj();
aj.flushGeneratedClasses(loader);
boolean exist = aj.generatedClassesExist(loader);
assertFalse("There should be no generated classes", exist);
}
}
|