@Test
  public void testHasReferenceBounds() {
    Bounds bounds = new Bounds(0, 0, 0, 0);
    UIEnvironmentImpl uiEnvironment = new UIEnvironmentImpl(bounds, bounds, 16);

    Bounds actualBounds = uiEnvironment.getReferenceBounds();

    assertSame(bounds, actualBounds);
  }