BEPUutilitiesTests.QuickCollectionTests.Test C# (CSharp) 메소드

Test() 공개 정적인 메소드

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

Usage Example

예제 #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();
 }