Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
added new tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Not Officer committed Apr 4, 2021
1 parent 143d52e commit 54cee99
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Fortnite-API.Test/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@ private static async Task Main()
var apiKey = string.Empty; // optional as of now. check https://dash.fortnite-api.com to be sure
var api = new FortniteApiClient(apiKey);

var newCosmetics = await api.V2.Cosmetics.GetBrNewAsync();
var map = await api.V1.Map.GetAsync();
var pak1002Cosmetics = await api.V2.Cosmetics.SearchAllBrAsync(x => x.DynamicPakId = "1002");
var s16Cosmetics = await api.V2.Cosmetics.SearchAllBrAsync(x => x.BackendIntroduction = 16);
//var newCosmetics = await api.V2.Cosmetics.GetBrNewAsync();
//var map = await api.V1.Map.GetAsync();

//var cosmeticsV2 = await api.V2.Cosmetics.GetBrAsync();
//var renegadeSearch = await api.V2.Cosmetics.SearchBrAsync(x =>
Expand Down

0 comments on commit 54cee99

Please sign in to comment.