Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/System.Reflection.Emit/tests/TypeBuilder/TypeBuilderFullName.cs')
-rw-r--r--src/System.Reflection.Emit/tests/TypeBuilder/TypeBuilderFullName.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/System.Reflection.Emit/tests/TypeBuilder/TypeBuilderFullName.cs b/src/System.Reflection.Emit/tests/TypeBuilder/TypeBuilderFullName.cs
deleted file mode 100644
index cf76301f5c..0000000000
--- a/src/System.Reflection.Emit/tests/TypeBuilder/TypeBuilderFullName.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-// Licensed to the .NET Foundation under one or more agreements.
-// The .NET Foundation licenses this file to you under the MIT license.
-// See the LICENSE file in the project root for more information.
-
-using Xunit;
-
-namespace System.Reflection.Emit.Tests
-{
- public class TypeBuilderFullName
- {
- [Theory]
- [InlineData("TestType")]
- [InlineData("testype")]
- [InlineData("Test Type")]
- public void FullName(string typeName)
- {
- TypeBuilder type = Helpers.DynamicType(TypeAttributes.NotPublic, typeName: typeName);
- Assert.Equal(typeName, type.FullName);
- }
-
- [Fact]
- public void FullName_NestedType()
- {
- TypeBuilder type = Helpers.DynamicType(TypeAttributes.NotPublic, typeName: "Parent");
- TypeBuilder nestedType = type.DefineNestedType("Nested");
- Assert.Equal("Parent+Nested", nestedType.FullName);
- }
- }
-}