summaryrefslogtreecommitdiff
path: root/tests/src/CoreMangLib/cti/system/sbyte/sbyteparse2.cs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/CoreMangLib/cti/system/sbyte/sbyteparse2.cs')
-rw-r--r--tests/src/CoreMangLib/cti/system/sbyte/sbyteparse2.cs330
1 files changed, 0 insertions, 330 deletions
diff --git a/tests/src/CoreMangLib/cti/system/sbyte/sbyteparse2.cs b/tests/src/CoreMangLib/cti/system/sbyte/sbyteparse2.cs
deleted file mode 100644
index 377168f7df..0000000000
--- a/tests/src/CoreMangLib/cti/system/sbyte/sbyteparse2.cs
+++ /dev/null
@@ -1,330 +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 System;
-using System.Globalization;
-/// <summary>
-/// SByte.Parse(String,NumberStyle)
-/// </summary>
-public class SByteParse2
-{
- public static int Main()
- {
- SByteParse2 sbyteParse2 = new SByteParse2();
- TestLibrary.TestFramework.BeginTestCase("SByteParse2");
- if (sbyteParse2.RunTests())
- {
- TestLibrary.TestFramework.EndTestCase();
- TestLibrary.TestFramework.LogInformation("PASS");
- return 100;
- }
- else
- {
- TestLibrary.TestFramework.EndTestCase();
- TestLibrary.TestFramework.LogInformation("FAIL");
- return 0;
- }
- }
- public bool RunTests()
- {
- bool retVal = true;
- TestLibrary.TestFramework.LogInformation("[Positive]");
- retVal = PosTest1() && retVal;
- retVal = PosTest2() && retVal;
- retVal = PosTest3() && retVal;
- retVal = PosTest4() && retVal;
- retVal = PosTest5() && retVal;
- retVal = PosTest6() && retVal;
- retVal = PosTest7() && retVal;
- TestLibrary.TestFramework.LogInformation("[Negative]");
- retVal = NegTest1() && retVal;
- retVal = NegTest2() && retVal;
- retVal = NegTest3() && retVal;
- retVal = NegTest4() && retVal;
- retVal = NegTest5() && retVal;
- return retVal;
- }
- #region PositiveTest
- public bool PosTest1()
- {
- bool retVal = true;
- TestLibrary.TestFramework.BeginScenario("PosTest1: the string represents SByte maxValue 1");
- try
- {
- string sourceStr = SByte.MaxValue.ToString();
- NumberStyles style = NumberStyles.Any;
- sbyte SByteVal = sbyte.Parse(sourceStr, style);
- if (SByteVal != sbyte.MaxValue)
- {
- TestLibrary.TestFramework.LogError("001", "the ActualResult is not the ExpectResult");
- retVal = false;
- }
- }
- catch (Exception e)
- {
- TestLibrary.TestFramework.LogError("002", "Unexpected exception: " + e);
- retVal = false;
- }
- return retVal;
- }
- public bool PosTest2()
- {
- bool retVal = true;
- TestLibrary.TestFramework.BeginScenario("PosTest2: the string represents SByte maxValue 2");
- try
- {
- string sourceStr = "7f";
- NumberStyles style = NumberStyles.HexNumber;
- sbyte SByteVal = sbyte.Parse(sourceStr, style);
- if (SByteVal != sbyte.MaxValue)
- {
- TestLibrary.TestFramework.LogError("003", "the ActualResult is not the ExpectResult");
- retVal = false;
- }
- }
- catch (Exception e)
- {
- TestLibrary.TestFramework.LogError("004", "Unexpected exception: " + e);
- retVal = false;
- }
- return retVal;
- }
- public bool PosTest3()
- {
- bool retVal = true;
- TestLibrary.TestFramework.BeginScenario("PosTest3: the string represents SByte minValue 1");
- try
- {
- string sourceStr = sbyte.MinValue.ToString();
- NumberStyles style = NumberStyles.Any;
- sbyte SByteVal = sbyte.Parse(sourceStr, style);
- if (SByteVal != sbyte.MinValue)
- {
- TestLibrary.TestFramework.LogError("005", "the ActualResult is not the ExpectResult");
- retVal = false;
- }
- }
- catch (Exception e)
- {
- TestLibrary.TestFramework.LogError("006", "Unexpected exception: " + e);
- retVal = false;
- }
- return retVal;
- }
- public bool PosTest4()
- {
- bool retVal = true;
- TestLibrary.TestFramework.BeginScenario("PosTest4: the string represents SByte minValue 2");
- try
- {
- string sourceStr = "080";
- NumberStyles style = NumberStyles.HexNumber;
- sbyte SByteVal = sbyte.Parse(sourceStr, style);
- if (SByteVal != sbyte.MinValue)
- {
- TestLibrary.TestFramework.LogError("007", "the ActualResult is not the ExpectResult");
- retVal = false;
- }
- }
- catch (Exception e)
- {
- TestLibrary.TestFramework.LogError("008", "Unexpected exception: " + e);
- retVal = false;
- }
- return retVal;
- }
- public bool PosTest5()
- {
- bool retVal = true;
- TestLibrary.TestFramework.BeginScenario("PosTest5: the string represents random SByte 1");
- try
- {
- SByte SByteVal = (sbyte)this.GetInt32(0, 127);
- NumberStyles style = NumberStyles.Any;
- string sourceStr = SByteVal.ToString();
- sbyte desSByte = sbyte.Parse(sourceStr, style);
- if (desSByte != SByteVal)
- {
- TestLibrary.TestFramework.LogError("009", "the ExpectResult is not the ActualResult");
- retVal = false;
- }
- }
- catch (Exception e)
- {
- TestLibrary.TestFramework.LogError("010", "Unexpect exception:" + e);
- retVal = false;
- }
- return retVal;
- }
- public bool PosTest6()
- {
- bool retVal = true;
- TestLibrary.TestFramework.BeginScenario("PosTest6: the string represents random SByte 2");
- try
- {
- SByte SByteVal = (sbyte)this.GetInt32(0, 127);
- NumberStyles style = NumberStyles.Any;
- string sourceStr = "\u0020" + SByteVal.ToString() + "\u0020";
- sbyte desSByte = sbyte.Parse(sourceStr, style);
- if (desSByte != SByteVal)
- {
- TestLibrary.TestFramework.LogError("011", "the ExpectResult is not the ActualResult");
- retVal = false;
- }
- }
- catch (Exception e)
- {
- TestLibrary.TestFramework.LogError("012", "Unexpect exception:" + e);
- retVal = false;
- }
- return retVal;
- }
- public bool PosTest7()
- {
- bool retVal = true;
- TestLibrary.TestFramework.BeginScenario("PosTest7: the string represents random SByte 3");
- try
- {
- SByte SByteVal = (sbyte)this.GetInt32(0, 127);
- NumberStyles style = NumberStyles.Any;
- string sourceStr = "\u0020" + "-" + SByteVal.ToString() + "\u0020";
- sbyte desSByte = sbyte.Parse(sourceStr, style);
- if (desSByte != SByteVal * (-1))
- {
- TestLibrary.TestFramework.LogError("013", "the ExpectResult is not the ActualResult");
- retVal = false;
- }
- }
- catch (Exception e)
- {
- TestLibrary.TestFramework.LogError("014", "Unexpect exception:" + e);
- retVal = false;
- }
- return retVal;
- }
- #endregion
- #region NegativeTest
- public bool NegTest1()
- {
- bool retVal = true;
- TestLibrary.TestFramework.BeginScenario("NegTest1: the string is null");
- try
- {
- string sourceStr = null;
- NumberStyles style = NumberStyles.Any;
- sbyte desSByte = sbyte.Parse(sourceStr, style);
- TestLibrary.TestFramework.LogError("N001", "the string is null but not throw exception");
- retVal = false;
- }
- catch (ArgumentNullException) { }
- catch (Exception e)
- {
- TestLibrary.TestFramework.LogError("N002", "Unexpect exception:" + e);
- retVal = false;
- }
- return retVal;
- }
- public bool NegTest2()
- {
- bool retVal = true;
- TestLibrary.TestFramework.BeginScenario("NegTest2: the string does not consist of an optional sign follow by a sequence of digit");
- try
- {
- string sourceStr = "helloworld";
- NumberStyles style = NumberStyles.Any;
- sbyte desSByte = sbyte.Parse(sourceStr, style);
- TestLibrary.TestFramework.LogError("N003", "the string does not consist of an optional sign follow by a sequence of digit but not throw exception");
- retVal = false;
- }
- catch (FormatException) { }
- catch (Exception e)
- {
- TestLibrary.TestFramework.LogError("N004", "Unexpect exception:" + e);
- retVal = false;
- }
- return retVal;
- }
- public bool NegTest3()
- {
- bool retVal = true;
- TestLibrary.TestFramework.BeginScenario("NegTest3: the string represents digit less than SByte MinValue");
- try
- {
- string sourceStr = "-129";
- NumberStyles style = NumberStyles.Any;
- sbyte desSByte = sbyte.Parse(sourceStr, style);
- TestLibrary.TestFramework.LogError("N005", "the string represents digit less than SByte MinValue");
- retVal = false;
- }
- catch (OverflowException) { }
- catch (Exception e)
- {
- TestLibrary.TestFramework.LogError("N006", "Unexpect exception:" + e);
- retVal = false;
- }
- return retVal;
- }
- public bool NegTest4()
- {
- bool retVal = true;
- TestLibrary.TestFramework.BeginScenario("NegTest4: the string represents digit greater than SByte MaxValue");
- try
- {
- string sourceStr = "128";
- NumberStyles style = NumberStyles.Any;
- sbyte desSByte = sbyte.Parse(sourceStr,style);
- TestLibrary.TestFramework.LogError("N007", "the string represents digit greater than SByte MaxValue but not throw exception");
- retVal = false;
- }
- catch (OverflowException) { }
- catch (Exception e)
- {
- TestLibrary.TestFramework.LogError("N008", "Unexpect exception:" + e);
- retVal = false;
- }
- return retVal;
- }
- public bool NegTest5()
- {
- bool retVal = true;
- TestLibrary.TestFramework.BeginScenario("NegTest5: the NumberStyle value is not a NumberStyle");
- try
- {
- string sourceStr = this.GetInt32(0, 128).ToString();
- NumberStyles style = (NumberStyles)(-1);
- sbyte desSByte = sbyte.Parse(sourceStr, style);
- TestLibrary.TestFramework.LogError("N009", "the NumberStyle value is not a NumberStyle but not throw exception");
- retVal = false;
- }
- catch (ArgumentException) { }
- catch (Exception e)
- {
- TestLibrary.TestFramework.LogError("N010", "Unexpect exception:" + e);
- retVal = false;
- }
- return retVal;
- }
- #endregion
- #region HelpMethod
- private Int32 GetInt32(Int32 minValue, Int32 maxValue)
- {
- try
- {
- if (minValue == maxValue)
- {
- return minValue;
- }
- if (minValue < maxValue)
- {
- return minValue + TestLibrary.Generator.GetInt32(-55) % (maxValue - minValue);
- }
- }
- catch
- {
- throw;
- }
-
- return minValue;
- }
- #endregion
-}