Skip to content

Commit 0f726fe

Browse files
committed
Update comment test with class type bounded params
1 parent ee8dccf commit 0f726fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

JavaToCSharp.Tests/CommentTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public class Foo
110110
[InlineData("Child extends Parent implements IParent", "Child : Parent, IParent")]
111111

112112
[InlineData("Parent<T>", "Parent<T>")]
113-
[InlineData("Child<T extends BoundType<T>>", "Child<T>")] // issue #125, should add: where T : BoundType<T>
113+
[InlineData("Child<T extends BoundType<T>>", "Child<T>\n where T : BoundType<T>")]
114114
[InlineData("Child extends Parent<BoundType>", "Child : Parent<BoundType>")]
115115
public void CommentsInsideClass_ShouldNotBeDuplicated_Fix_88(string javaClass, string csharpClass)
116116
{

0 commit comments

Comments
 (0)