public void Description_is_Png() { string expected = "Png"; PngFormat format = new PngFormat(); Assert.AreEqual(expected, format.Description); }
public void Extension_is_png() { string expected = "png"; PngFormat format = new PngFormat(); Assert.AreEqual(expected, format.Extension); }