Skip to content

Commit 698ec8e

Browse files
seatlemorningyallie
authored andcommitted
Delete extra tests
1 parent 777025f commit 698ec8e

1 file changed

Lines changed: 0 additions & 29 deletions

File tree

CoreRemoting.Tests/BsonSerializationTests.cs

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1007,35 +1007,6 @@ public void Integration_DeeplyNestedGenerics_ShouldWork()
10071007
Assert.NotNull(resultType);
10081008
Assert.Equal(typeof(List<List<List<long[]>>>).Name, resultType.Name);
10091009
}
1010-
1011-
[Fact]
1012-
public void TryExtractArrayElementType_ShouldExtractFromSimpleArray()
1013-
{
1014-
var result = _converter.TryExtractArrayElementType("System.Int64[]", out var elementType);
1015-
1016-
Assert.True(result);
1017-
Assert.Equal("System.Int64", elementType);
1018-
}
1019-
1020-
[Fact]
1021-
public void TryExtractArrayElementType_ShouldExtractFromJaggedArray()
1022-
{
1023-
var result = _converter.TryExtractArrayElementType("System.Int64[][]", out var elementType);
1024-
1025-
Assert.True(result);
1026-
Assert.Equal("System.Int64[]", elementType);
1027-
}
1028-
1029-
[Fact]
1030-
public void TryExtractArrayElementType_ShouldExtractFromGenericArray()
1031-
{
1032-
var result = _converter.TryExtractArrayElementType(
1033-
"System.Collections.Generic.List`1[[System.Int32]][]",
1034-
out var elementType);
1035-
1036-
Assert.True(result);
1037-
Assert.Equal("System.Collections.Generic.List`1[[System.Int32]]", elementType);
1038-
}
10391010

10401011
#endregion
10411012

0 commit comments

Comments
 (0)