public void get_ImageManipulatorTypeTest()
        {
            Image      img = new Bitmap(1, 1);
            PictureBox pic = new PictureBox();

            pic.Image = img;
            NullImageObject target = new NullImageObject(pic);

            ImageManipulatorType.Name expected = ImageManipulatorType.Name.DEFAULT;
            ImageManipulatorType.Name actual;
            actual = target.get_ImageManipulatorType();
            Assert.AreEqual(expected, actual);
        }
 public void NullImageObjectConstructorTest()
 {
     PictureBox      pic    = new PictureBox(); // TODO: Passenden Wert initialisieren
     NullImageObject target = new NullImageObject(pic);
 }