Skip to content

Commit a5319c4

Browse files
author
Matija Obid
committed
Tests
1 parent 4190f58 commit a5319c4

File tree

49 files changed

+1122
-259
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+1122
-259
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// -*- combobulate-test-point-overlays: ((1 outline 237) (2 outline 251) (3 outline 259) (4 outline 283) (5 outline 296)); eval: (combobulate-test-fixture-mode t); -*-
2+
package example;
3+
4+
public class Arguments {
5+
public static void test(Long a, String[] arr, Map<Integer, String> b, Set<Long> x, String... args) {
6+
}
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// -*- combobulate-test-point-overlays: ((1 outline 237) (2 outline 251) (3 outline 259) (4 outline 283) (5 outline 296)); eval: (combobulate-test-fixture-mode t); -*-
2+
package example;
3+
4+
public class Arguments {
5+
public static void test(String[] arr, Map<Integer, String> b, Long a, Set<Long> x, String... args) {
6+
}
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// -*- combobulate-test-point-overlays: ((1 outline 237) (2 outline 251) (3 outline 259) (4 outline 283) (5 outline 296)); eval: (combobulate-test-fixture-mode t); -*-
2+
package example;
3+
4+
public class Arguments {
5+
public static void test(String[] arr, Long a, Set<Long> x, Map<Integer, String> b, String... args) {
6+
}
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// -*- combobulate-test-point-overlays: ((1 outline 237) (2 outline 251) (3 outline 259) (4 outline 283) (5 outline 296)); eval: (combobulate-test-fixture-mode t); -*-
2+
package example;
3+
4+
public class Arguments {
5+
public static void test(String[] arr, Long a, Map<Integer, String> b, String... args, Set<Long> x) {
6+
}
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// -*- combobulate-test-point-overlays: ((1 outline 237) (2 outline 251) (3 outline 259) (4 outline 283) (5 outline 296)); eval: (combobulate-test-fixture-mode t); -*-
2+
package example;
3+
4+
public class Arguments {
5+
public static void test(String[] arr, Long a, Map<Integer, String> b, Set<Long> x, String... args) {
6+
}
7+
}

tests/fixture-deltas/combobulate-drag-down/example.java[@1~after].java

Lines changed: 0 additions & 11 deletions
This file was deleted.

tests/fixture-deltas/combobulate-drag-down/example.java[@2~after].java

Lines changed: 0 additions & 11 deletions
This file was deleted.

tests/fixture-deltas/combobulate-drag-down/example.java[@3~after].java

Lines changed: 0 additions & 11 deletions
This file was deleted.

tests/fixture-deltas/combobulate-drag-down/example.java[@4~after].java

Lines changed: 0 additions & 11 deletions
This file was deleted.
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
// -*- combobulate-test-point-overlays: ((1 outline 251) (2 outline 302) (3 outline 332) (4 outline 383) (5 outline 429) (6 outline 526)); eval: (combobulate-test-fixture-mode t); -*-
2+
package example;
3+
4+
public class Methods {
5+
6+
/**
7+
* Comment.
8+
*/
9+
private String parameter 2;
10+
// Line comment
11+
@Getter
12+
private int parameter1;
13+
14+
private abstract int add(int a, int b);
15+
16+
// ....
17+
public static void main(String[] args) {
18+
}
19+
20+
@Deprecated
21+
@SumeAnnotation(value = 24)
22+
protected int sum(int a, int b) {
23+
return a + b;
24+
}
25+
26+
private Map<Integer, String> returnNull() {
27+
return null;
28+
}
29+
}

0 commit comments

Comments
 (0)