def test_ImageRGBA(): glyph = ImageRGBA() assert glyph.image == "image" assert glyph.x == "x" assert glyph.y == "y" assert glyph.dw == "dw" assert glyph.dh == "dh" assert glyph.rows == "rows" assert glyph.cols == "cols" assert glyph.dilate == False yield check_props, glyph, [ "image", "x", "y", "dw", "dh", "rows", "cols", "dilate" ]
def test_ImageRGBA(): glyph = ImageRGBA() assert glyph.image is None assert glyph.x is None assert glyph.y is None assert glyph.dw is None assert glyph.dh is None assert glyph.dilate is False check_properties_existence(glyph, [ "image", "x", "y", "dw", "dw_units", "dh", "dh_units", "dilate", ], GLYPH)
def test_ImageRGBA() -> None: glyph = ImageRGBA() assert glyph.image is None assert glyph.x == field("x") assert glyph.y == field("y") assert glyph.dw is None assert glyph.dh is None assert glyph.dilate is False check_properties_existence(glyph, [ "image", "x", "y", "dw", "dw_units", "dh", "dh_units", "global_alpha", "dilate", ], GLYPH)
def test_ImageRGBA(): glyph = ImageRGBA() assert glyph.image is None assert glyph.x is None assert glyph.y is None assert glyph.dw is None assert glyph.dh is None assert glyph.rows == None assert glyph.cols == None assert glyph.dilate == False yield (check_properties_existence, glyph, [ "image", "x", "y", "dw", "dw_units", "dh", "dh_units", "rows", "cols", "dilate", ], GLYPH)