public void TestChampionsByCountry2()
        {
            Formula1 f1     = new Formula1(new F1TestLoader());
            XElement actual = f1.ChampionsByCountry2("Finland");

            Assert.Equal(Formula1VerificationData().ToString(),
                         actual.ToString());
        }
 public void TestChampionsByCountry2()
 {
     Formula1 f1 = new Formula1(new F1TestLoader());
     XElement actual = f1.ChampionsByCountry2("Finland");
     Assert.AreEqual(Formula1VerificationData().ToString(),
       actual.ToString());
 }