Skip to content

Commit

Permalink
#40 Add test
Browse files Browse the repository at this point in the history
  • Loading branch information
timowest committed Mar 4, 2013
1 parent a0fbe80 commit c88f3e6
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions scalagen/src/test/scala/com/mysema/examples/BagWindow.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package com.mysema.examples;

public class BagWindow extends BagWindowSuper {

Bag<?> bag;

String str;

public BagWindow(Bag<?> b, String title) {
super(title);
bag = b;
str = "abc";
}

}

class Bag<T> {

}

class BagWindowSuper {

public BagWindowSuper(String title) {
// do nothing
}
}

0 comments on commit c88f3e6

Please sign in to comment.