GetDpi() public static method

Calculates the DPI of the windows desktop.
public static GetDpi ( ) : int
return int
        public void GetDpi()
        {
            int dpi = GraphicHelper.GetDpi();

            dpi.Should().BeGreaterThan(0);
        }