Ejemplo n.º 1
0
        private static async Task RunOasTestsAsync()
        {
            var tests = new OasTests();
            await tests.PetStoreClient();

            await tests.PetStoreServer();
        }
Ejemplo n.º 2
0
        private static void RunOasTests()
        {
            var tests = new OasTests();

            tests.Initialize();
            tests.Endpoints_count();
            tests.Uber_name_check();
        }
Ejemplo n.º 3
0
        private static async Task RunOasTestsAsync()
        {
            var tests = new OasTests();
            await tests.PetStoreClient();

            await tests.PetStoreServer();

            TestCount += tests.TestCount;
            Console.WriteLine($"Tests ran {TestCount} - OAS");
        }