Example #1
0
        internal static void EmptyAgentTests()
        {
            var agent = new EmptyAgent();

            makeTurn(agent, "hello");
            makeTurn(agent, "say hi");
        }
Example #2
0
 private static void makeTurn(EmptyAgent agent, string input)
 {
     var output = agent.Input(input);
 }