public void Reversing(string input, string expected) { //Arrange ReverseSentence mySent = new ReverseSentence(); //Act string result = mySent.ReverseSent(input); //Assert Assert.Equal(expected, result); }
public static void Main(String[] args) { string input = "Hello, Michael"; Console.WriteLine("hello"); ReverseSentence mySent = new ReverseSentence(); string output = mySent.ReverseSent(input); Console.WriteLine(output); }