Exemplo n.º 1
0
        public void Call_CorrectlyRecordsFunctionCall()
        {
            codeGen.Call("alert", "'hey'");

            Assert.AreEqual("alert('hey');\r\n", codeGen.Lines.ToString());
        }