blob: 61c8ace63ce4950cc8e57f830b166abb68879a51 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import org.aspectj.testing.Tester;
/** @testcase fail when note not found */
public class TesterNotesFail {
public static void main (String[] args) {
Tester.note("note ");
Tester.check("note"); // fail
}
}
|