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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/corlib/Test/System/ByteTest.cs')
-rw-r--r--mcs/class/corlib/Test/System/ByteTest.cs11
1 files changed, 0 insertions, 11 deletions
diff --git a/mcs/class/corlib/Test/System/ByteTest.cs b/mcs/class/corlib/Test/System/ByteTest.cs
index 6a0abcf77e4..10a3b9eb7d9 100644
--- a/mcs/class/corlib/Test/System/ByteTest.cs
+++ b/mcs/class/corlib/Test/System/ByteTest.cs
@@ -216,17 +216,6 @@ public class ByteTest : Assertion
}
}
-
- [Test]
- public void ToString_Default ()
- {
- byte value = 255;
- string def = value.ToString ("G");
- string format = null;
- AssertEquals ("null", def, value.ToString (format));
- format = String.Empty;
- AssertEquals ("empty", def, value.ToString (format));
- }
}
}