Example #1
0
        public void TestIsbn13()
        {
            //Arrage
            Bog b3 = new Bog();

            //Act
            b3.Isbn13 = "111111111111111";
        }
Example #2
0
        public void TestPageLength()
        {
            //Arrange
            Bog b2 = new Bog();

            //Act
            b2.Page = 200;
        }
Example #3
0
        public void TestAuthorLength()
        {
            //Arrange
            Bog b1 = new Bog();

            //Act

            b1.Author = "A";
        }
Example #4
0
 public void Initialize()
 {
     _bog = new Bog();
 }