コード例 #1
0
        public void StartPath_Test()
        {
            drawModel.StartPath(new Point(0, 0));
            int actual = drawModel.Paths.Count;

            int expected = 3;

            Assert.AreEqual(expected, actual);
        }
コード例 #2
0
 public void PathStartedAt(Point point)
 {
     _drawModel.StartPath(point);
 }