Ejemplo n.º 1
0
        public async Task GetSingleById_Should_Return_NotFound(string url, int id)
        {
            //Arrange

            //Act
            var response = await HttpTestClient.GetAsync($"{url}{id}");

            //Assert
            response.StatusCode.ShouldBe(System.Net.HttpStatusCode.NotFound);
        }
Ejemplo n.º 2
0
        public async Task GetAll_Should_Return_Ok(string url)
        {
            //Arrange

            //Act
            var response = await HttpTestClient.GetAsync(url);

            //Assert
            response.StatusCode.ShouldBe(System.Net.HttpStatusCode.OK);
        }
Ejemplo n.º 3
0
 public UsersTests(HttpTestClient http)
 {
     _http = http;
 }
Ejemplo n.º 4
0
 public AdminBlogPostCommentsTests(HttpTestClient http)
 {
     _http = http;
 }
Ejemplo n.º 5
0
 public AccountTests(HttpTestClient http)
 {
     _http = http;
 }
Ejemplo n.º 6
0
 public SwaggerTests(HttpTestClient http)
 {
     _http = http;
 }
Ejemplo n.º 7
0
 public BlogPostsTests(HttpTestClient http)
 {
     _http = http;
 }
Ejemplo n.º 8
0
 public LoginFlowTest(HttpTestClient http)
 {
     _http = http;
 }
Ejemplo n.º 9
0
 public BlogManagementFlowTest(HttpTestClient http)
 {
     _http = http;
 }