summaryrefslogtreecommitdiff
path: root/tests/src/CoreMangLib/cti/system/io/endofstreamexception/endofstreamexceptionctor1.cs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/CoreMangLib/cti/system/io/endofstreamexception/endofstreamexceptionctor1.cs')
-rw-r--r--tests/src/CoreMangLib/cti/system/io/endofstreamexception/endofstreamexceptionctor1.cs74
1 files changed, 74 insertions, 0 deletions
diff --git a/tests/src/CoreMangLib/cti/system/io/endofstreamexception/endofstreamexceptionctor1.cs b/tests/src/CoreMangLib/cti/system/io/endofstreamexception/endofstreamexceptionctor1.cs
new file mode 100644
index 0000000000..f7fca75b30
--- /dev/null
+++ b/tests/src/CoreMangLib/cti/system/io/endofstreamexception/endofstreamexceptionctor1.cs
@@ -0,0 +1,74 @@
+// 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 System.Security;
+using System;
+using System.IO;
+
+[SecuritySafeCritical]
+/// <summary>
+///ctor
+/// </summary>
+public class EndOfStreamExceptionctor1
+{
+ #region Public Methods
+ public bool RunTests()
+ {
+ bool retVal = true;
+ TestLibrary.TestFramework.LogInformation("[Positive]");
+ retVal = PosTest1() && retVal;
+ return retVal;
+ }
+
+ #region Positive Test Cases
+ public bool PosTest1()
+ {
+ bool retVal = true;
+
+ TestLibrary.TestFramework.BeginScenario("PosTest1: Create a new EndOfStreamException instance.");
+
+ try
+ {
+ //Create the application domain setup information.
+ EndOfStreamException myEndOfStreamException = new EndOfStreamException();
+ if (myEndOfStreamException == null)
+ {
+ TestLibrary.TestFramework.LogError("001.1", "the EndOfStreamException ctor error occurred. ");
+ retVal = false;
+ }
+
+ }
+ catch (Exception e)
+ {
+ TestLibrary.TestFramework.LogError("001.2", "Unexpected exception: " + e);
+ retVal = false;
+ }
+
+ return retVal;
+ }
+
+ #endregion
+
+ #endregion
+
+ public static int Main()
+ {
+ EndOfStreamExceptionctor1 test = new EndOfStreamExceptionctor1();
+
+ TestLibrary.TestFramework.BeginTestCase("EndOfStreamExceptionctor1");
+
+ if (test.RunTests())
+ {
+ TestLibrary.TestFramework.EndTestCase();
+ TestLibrary.TestFramework.LogInformation("PASS");
+ return 100;
+ }
+ else
+ {
+ TestLibrary.TestFramework.EndTestCase();
+ TestLibrary.TestFramework.LogInformation("FAIL");
+ return 0;
+ }
+ }
+
+}