// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information. using System; using System.Collections.ObjectModel; using Microsoft.TestCommon.Types; namespace Microsoft.TestCommon { public class CommonUnitTestDataSets { public static ValueTypeTestData Chars { get { return TestData.CharTestData; } } public static ValueTypeTestData Ints { get { return TestData.IntTestData; } } public static ValueTypeTestData Uints { get { return TestData.UintTestData; } } public static ValueTypeTestData Shorts { get { return TestData.ShortTestData; } } public static ValueTypeTestData Ushorts { get { return TestData.UshortTestData; } } public static ValueTypeTestData Longs { get { return TestData.LongTestData; } } public static ValueTypeTestData Ulongs { get { return TestData.UlongTestData; } } public static ValueTypeTestData Bytes { get { return TestData.ByteTestData; } } public static ValueTypeTestData SBytes { get { return TestData.SByteTestData; } } public static ValueTypeTestData Bools { get { return TestData.BoolTestData; } } public static ValueTypeTestData Doubles { get { return TestData.DoubleTestData; } } public static ValueTypeTestData Floats { get { return TestData.FloatTestData; } } public static ValueTypeTestData DateTimes { get { return TestData.DateTimeTestData; } } public static ValueTypeTestData Decimals { get { return TestData.DecimalTestData; } } public static ValueTypeTestData TimeSpans { get { return TestData.TimeSpanTestData; } } public static ValueTypeTestData Guids { get { return TestData.GuidTestData; } } public static ValueTypeTestData DateTimeOffsets { get { return TestData.DateTimeOffsetTestData; } } public static ValueTypeTestData SimpleEnums { get { return TestData.SimpleEnumTestData; } } public static ValueTypeTestData LongEnums { get { return TestData.LongEnumTestData; } } public static ValueTypeTestData FlagsEnums { get { return TestData.FlagsEnumTestData; } } public static TestData EmptyStrings { get { return TestData.EmptyStrings; } } public static RefTypeTestData Strings { get { return TestData.StringTestData; } } public static TestData NonNullEmptyStrings { get { return TestData.NonNullEmptyStrings; } } public static RefTypeTestData ISerializableTypes { get { return TestData.ISerializableTypeTestData; } } public static ReadOnlyCollection ValueTypeTestDataCollection { get { return TestData.ValueTypeTestDataCollection; } } public static ReadOnlyCollection RefTypeTestDataCollection { get { return TestData.RefTypeTestDataCollection; } } public static ReadOnlyCollection ValueAndRefTypeTestDataCollection { get { return TestData.ValueTypeTestDataCollection; } } public static ReadOnlyCollection RepresentativeValueAndRefTypeTestDataCollection { get { return TestData.RepresentativeValueAndRefTypeTestDataCollection; } } } }