public void IsPowerOfFourTest() { var s = new Solution(); Assert.True(s.IsPowerOfFour(4)); Assert.False(s.IsPowerOfFour(5)); }