public void PointIsEmpty_Is_Partially_Empty_Y() { Point pointChecked = new Point(); pointChecked.Y = 5; Assert.IsFalse(StructVerify.PointIsEmpty(pointChecked)); }
public void PointIsEmpty_Is_Not_Empty() { Point pointChecked = new Point(); pointChecked.X = 5; pointChecked.Y = -4; Assert.IsFalse(StructVerify.PointIsEmpty(pointChecked)); }
public void PointIsEmpty_Is_Empty() { Point pointChecked = new Point(); Assert.IsTrue(StructVerify.PointIsEmpty(pointChecked)); }