Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 733 Bytes

File metadata and controls

33 lines (22 loc) · 733 Bytes

API Tests using Restsharp and HttpClient

About

This is a automated tests project using HttpClient and RestSharp frameworks.

We are using Go Rest APIs for the tests.

You will need

  • Visual Studio Community with C# or similar

Starting

  • Open and build project
  • Install NuGet packages

Create autentication file

Inside Helper folder, add a class called AuthToken

namespace MicroserviceAutomation.Helper
{
    public class AuthToken
    {
        public static string Auth { get; } = "Bearer ACCESS_TOKEN";
    }
}

Insted of ACCESS_TOKEN, put your own token generated at Go Rest API`s site.

Then, build the project again and execute tests