Package com.googlecode.gwt.test

Source Code of com.googlecode.gwt.test.DebugIdEnabledTest

package com.googlecode.gwt.test;

import static org.junit.Assert.assertEquals;

import org.junit.Test;

import com.google.gwt.user.client.ui.Button;

public class DebugIdEnabledTest extends GwtTestTest {

   @Override
   public boolean ensureDebugId() {
      return true;
   }

   @Test
   public void ensureDebugId_Enabled() {
      // Arrange
      Button b = new Button();

      // Act
      b.ensureDebugId("myDebugId");

      // Assert
      assertEquals("gwt-debug-myDebugId", b.getElement().getId());
   }

}
TOP

Related Classes of com.googlecode.gwt.test.DebugIdEnabledTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.