Example #1
0
 //[DeploymentItem("LibOpenBYOND.dll")]
 public void parseIncludeTest()
 {
     DME target = new DME(); // TODO: Initialize to an appropriate value
     string line = "#include \"balls.txt\""; // TODO: Initialize to an appropriate value
     string expected = Path.GetFullPath(Path.Combine("balls.txt"));
     target.parseInclude(line);
     CollectionAssert.Contains(target.Files, expected, "Balls.txt not in Files.");
 }
Example #2
0
        //[DeploymentItem("LibOpenBYOND.dll")]
        public void parseIncludeTest()
        {
            DME    target   = new DME();                // TODO: Initialize to an appropriate value
            string line     = "#include \"balls.txt\""; // TODO: Initialize to an appropriate value
            string expected = Path.GetFullPath(Path.Combine("balls.txt"));

            target.parseInclude(line);
            CollectionAssert.Contains(target.Files, expected, "Balls.txt not in Files.");
        }