BEPUutilitiesTests.QuickCollectionTests.Test C# (CSharp) Method

Test() public static method

public static Test ( ) : void
return void
        public static void Test()
        {
            //Could actually do a unit testing engine here. .. ... .... Or not.
            TestQueueResizing();
            TestListResizing();
            TestSetResizing();
            TestDictionaryResizing();
        }

Usage Example

Ejemplo n.º 1
0
 static void Main(string[] args)
 {
     CodeGenTests.Test();
     AllocatorTests.TestChurnStability();
     QuickCollectionTests.Test();
     //BoundingTests.Test();
     Console.WriteLine();
     AffineTests.Test();
     Console.WriteLine();
     Vector3Tests.Test();
     Console.WriteLine();
     Matrix3x3Tests.Test();
     Console.WriteLine();
     Matrix4x4Tests.Test();
 }