[InlineData("https://pastebin.com/0x7jJvB4", "Untitled", (int)Species.Miltank, (int)Species.Braviary)] // Miltank...Braviary
        public static void HasPastebinSets(string url, string name, params int[] speciesPresent)
        {
            var tpi = new TeamPasteInfo(url);

            tpi.Source.Should().Be(TeamPasteInfo.PasteSource.Pastebin);
            tpi.VerifyContents(name, speciesPresent);
        }