Exemplo n.º 1
0
        public void ReturnHelloWorld()
        {
            //Arrange
            var returnHW = new UnitTestMethods();
            string answer = "Hello, World!";

            //Act
            var actual = returnHW.ReturnHelloWorld();

            //Assert
            Assert.Equal(answer, actual);
        }