Example #1
0
        public void DrawingBookTest1(int n, int p, int expected)
        {
            int actual = DrawingBook.pageCount(n, p);

            Assert.Equal(expected, actual);
        }
        static void Main(string[] args)
        {
            DrawingBook db = new DrawingBook();

            db.Run();
        }