Inheritance: IDisposable
Exemplo n.º 1
0
        static void PerformanceTests()
        {
            var performance = new Performance();

            //performance.TestSimpleSequentialHttpPostRequests();
            //performance.TestRestSharpHttpPostRequests();
            //performance.TestSimpleParallelHttpPostRequests();

            performance.Dispose();
        }
Exemplo n.º 2
0
        static void PerformanceTests()
        {
            var iterationCount = 10000;
            var performance = new Performance();

            performance.TestArangoClientSequentialInsertion(iterationCount);
            performance.TestSimpleSequentialHttpPostRequests(iterationCount);

            //performance.TestRestSharpHttpPostRequests();
            //performance.TestSimpleParallelHttpPostRequests();

            performance.Dispose();
        }