// Copyright 2017 Alexander Luzgarev
namespace MatFileHandler.Tests
{
///
/// Data used in reading/writing tests.
///
public static class CommonData
{
///
/// Limits of Int8.
///
public static readonly sbyte[] Int8Limits = { -128, 127 };
///
/// Limits of UInt8.
///
public static readonly byte[] UInt8Limits = { 0, 255 };
///
/// Limits of Int16.
///
public static readonly short[] Int16Limits = { -32768, 32767 };
///
/// Limits of UInt16.
///
public static readonly ushort[] UInt16Limits = { 0, 65535 };
///
/// Limits of Int32.
///
public static readonly int[] Int32Limits = { -2147483648, 2147483647 };
///
/// Limits of UInt32.
///
public static readonly uint[] UInt32Limits = { 0U, 4294967295U };
///
/// Limits of Int64.
///
public static readonly long[] Int64Limits = { -9223372036854775808L, 9223372036854775807L };
///
/// Limits of UInt64.
///
public static readonly ulong[] UInt64Limits = { 0UL, 18446744073709551615UL };
}
}