Beispiel #1
0
 static void Main(string[] args)
 {
     Console.WriteLine(HelloService.GetJSON());
 }
Beispiel #2
0
        public void JSON_Matches_Hard_Code()
        {
            string greetingJSON = HelloService.GetJSON();

            Assert.Equal("{\"Greeting\":\"Hello\",\"Addressee\":\"World\"}", greetingJSON);
        }