blob: 2a191a03f068ca497a356f928bb7711fa1eb1e2f (
plain)
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
66
67
68
69
70
71
72
73
74
|
Test plan for abstract aspects:
Coverage:
* all pointcut types
* all declare types
* all annotation pattern nodes
* all type pattern nodes
* type variables as type parameters
* Binary weaving!!!
Pointcut types:
* test declare warning with : DONE
- KindedPointcut
all parts of Signature pattern
- HandlerPointcut
- ReferencePointcut
- WithincodePointcut
- WithinPointcut
- And
- Or
- Not
* test before advice with DONE
- CflowPointcut
- annotation
- args annotation
- args
- this
- target
- @this
- @target
- @within
- @withincode
- parameter binding
* pointcut in generic class DONE
- ref with parameterized type
- ref without parameterized type (error)
Declares:
* declare warning / error (covered above) DONE
* declare parents DONE
* declare soft DONE
* declare precedence DONE
* declare @type DONE
* declare @field / method / cons DONE
AnnotationPatternNodes:
* And
* Or
* Not
* Exact
* Wild
Type pattern Nodes:
* And
* AnyWithAnnotation
* Or
* Not
* HasMember
* Exact
* Wild
* type variables as type parameters DONE
Multi-level hierarchy: DONE
* test 3-deep with partial parameterization in middle
|