advHighlighting -> light test case

This commit is contained in:
Anna.Kozlova
2019-01-02 16:35:41 +01:00
parent 7c76bbbbb7
commit 2e7f05efd0
57 changed files with 201 additions and 278 deletions
@@ -0,0 +1,23 @@
package pck;
class BaseMatcher<T> {
}
class MyMatcher extends BaseMatcher<String> {
}
class Expectations {
public <T> T with(T t) {
System.out.println("T");
return null;
}
public <T> T with(BaseMatcher<T> m) {
return null;
}
public static void main(String[] args) {
MyMatcher t = new MyMatcher();
String w = new Expectations().with( t);
}
}