Browse Source

fixed CollectionAndObjectInitializer test

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/vbnet@6173 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
pull/1/head
Siegfried Pammer 16 years ago
parent
commit
8c8162c801
  1. 5
      src/Libraries/NRefactory/Test/Output/VBNet/CSharpToVBNetConverterTest.cs

5
src/Libraries/NRefactory/Test/Output/VBNet/CSharpToVBNetConverterTest.cs

@ -613,16 +613,15 @@ Private m_Name As String"); @@ -613,16 +613,15 @@ Private m_Name As String");
}
[Test]
[Ignore]
public void CollectionAndObjectInitializer()
{
TestStatement("List<X> l = new List<X> { new X { A = 1 }, new X { A = 2 } };",
"Dim l As New List(Of X)() From { _\n" +
" New X() With { _\n" +
" .A = 1 _\n" +
" Key .A = 1 _\n" +
" }, _\n" +
" New X() With { _\n" +
" .A = 2 _\n" +
" Key .A = 2 _\n" +
" } _\n" +
"}");
}

Loading…
Cancel
Save