Skip to content

Commit

Permalink
Update Basic_Tests.cs (wp-net#349)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasPe authored and luiscreates committed Mar 2, 2024
1 parent 0dc0dbc commit 58a9364
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions WordPressPCL.Tests.Selfhosted/Basic_Tests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ public async Task BasicSetupTest()
// Posts
var posts = await _client.Posts.GetAllAsync();
Assert.IsNotNull(posts);

// Test Auth Client
var postsAuth = await _clientAuth.Posts.GetAllAsync();
Assert.IsNotNull(postsAuth);
}

[TestMethod]
Expand Down

0 comments on commit 58a9364

Please sign in to comment.