public void TestSongOfPiSolution(string testCase, bool expectedOutput)
        {
            // arrange
            Solutions.Implementation.SongOfPi.Solution song = new Solutions.Implementation.SongOfPi.Solution();

            // act
            bool isSongOfPi = song.IsSongOfPi(testCase);

            // assert
            NUnit.Framework.Assert.AreEqual(isSongOfPi, expectedOutput);
        }
        public void TestSongOfPiSolution(string testCase, bool expectedOutput)
        {
            // arrange
            Solutions.Implementation.SongOfPi.Solution song = new Solutions.Implementation.SongOfPi.Solution();

            // act
            bool isSongOfPi = song.IsSongOfPi(testCase);

            // assert
            NUnit.Framework.Assert.AreEqual(isSongOfPi, expectedOutput);
        }