public void TestSmashGgEntrantList()
 {
     Smashgg api = new Smashgg(new SmashGgSettings {
         TournamentName = "gre-3"
     });
     var a = api.GetAllEntrants();
 }
 public void TestSmashGgTop8()
 {
     Smashgg api = new Smashgg(new SmashGgSettings {
         TournamentName = "gre-3"
     });
     var a = api.GetAvailablesTop8();
 }
 public void TestSmashGgPendingSet()
 {
     Smashgg api = new Smashgg(new SmashGgSettings {
         TournamentName = "gre-3"
     });
     var a = api.GetAllPendingSets();
 }