We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee8dccf commit 0f726feCopy full SHA for 0f726fe
JavaToCSharp.Tests/CommentTests.cs
@@ -110,7 +110,7 @@ public class Foo
110
[InlineData("Child extends Parent implements IParent", "Child : Parent, IParent")]
111
112
[InlineData("Parent<T>", "Parent<T>")]
113
- [InlineData("Child<T extends BoundType<T>>", "Child<T>")] // issue #125, should add: where T : BoundType<T>
+ [InlineData("Child<T extends BoundType<T>>", "Child<T>\n where T : BoundType<T>")]
114
[InlineData("Child extends Parent<BoundType>", "Child : Parent<BoundType>")]
115
public void CommentsInsideClass_ShouldNotBeDuplicated_Fix_88(string javaClass, string csharpClass)
116
{
0 commit comments