Tests for handling basic pointer analysis statements
(String mainClass)
| 37 | * Tests for handling basic pointer analysis statements |
| 38 | */ |
| 39 | @ParameterizedTest |
| 40 | @ValueSource(strings = { |
| 41 | "New", |
| 42 | "Assign", |
| 43 | "StoreLoad", |
| 44 | "Call", |
| 45 | "Assign2", |
| 46 | "InstanceField", |
| 47 | "InstanceField2", |
| 48 | "CallParamRet", |
| 49 | "CallField", |
| 50 | "StaticCall", |
| 51 | "MergeParam", |
| 52 | "LinkedQueue", |
| 53 | "RedBlackBST", |
| 54 | "MultiReturn", |
| 55 | "Dispatch", |
| 56 | "Dispatch2", |
| 57 | "Interface", |
| 58 | "Recursion", |
| 59 | "Cycle", |
| 60 | "ComplexAssign", |
| 61 | }) |
| 62 | void test(String mainClass) { |
| 63 | Tests.testPTA(DIR, mainClass); |
| 64 | } |
| 65 | |
| 66 | } |