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

Commit 54cee99

Browse files
author
Not Officer
committed
added new tests
1 parent 143d52e commit 54cee99

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/Fortnite-API.Test/Program.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@ private static async Task Main()
1212
var apiKey = string.Empty; // optional as of now. check https://dash.fortnite-api.com to be sure
1313
var api = new FortniteApiClient(apiKey);
1414

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

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

0 commit comments

Comments
 (0)