public void Range_From_1_To_100_Returns_100_Elements()
        {
            FizzBuzz fizzbuzz = new FizzBuzz();
            Dictionary<int, string> translations = fizzbuzz.TranslateRange(1, 100);

            Assert.That(translations, Has.Count.EqualTo(100));
        }
Beispiel #2
0
        public void Range_From_1_To_100_Returns_100_Elements()
        {
            FizzBuzz fizzbuzz = new FizzBuzz();
            Dictionary <int, string> translations = fizzbuzz.TranslateRange(1, 100);

            Assert.That(translations, Has.Count.EqualTo(100));
        }
        public void Returns_Elements_Whose_Values_Match_The_Translation_Of_Their_Corresponding_Keys()
        {
            FizzBuzz fizzbuzz = new FizzBuzz();
            Dictionary<int, string> translations = fizzbuzz.TranslateRange(1, 15);

            foreach (var translation in translations)
                Assert.That(translation.Value, Is.EqualTo(fizzbuzz.Translate(translation.Key)));
        }
Beispiel #4
0
        public void Returns_Elements_Whose_Values_Match_The_Translation_Of_Their_Corresponding_Keys()
        {
            FizzBuzz fizzbuzz = new FizzBuzz();
            Dictionary <int, string> translations = fizzbuzz.TranslateRange(1, 15);

            foreach (var translation in translations)
            {
                Assert.That(translation.Value, Is.EqualTo(fizzbuzz.Translate(translation.Key)));
            }
        }