aboutsummaryrefslogtreecommitdiffstats
path: root/tests/tracing/TracingTest.java
blob: 687dad7ef4427742048e603b4a49024327963a48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import org.aspectj.weaver.tools.Trace;
import org.aspectj.weaver.tools.TraceFactory;

public class TracingTest {
	
	public void test () {
		TraceFactory factory = TraceFactory.getTraceFactory();
		Trace trace = factory.getTrace(getClass());
		System.out.println("? TracingTest.main() trace=" + trace);
	}
	
	public static void main (String[] args) {
		new TracingTest().test();
	}
	
}