Package com.googlecode.gwt.test.dom

Source Code of com.googlecode.gwt.test.dom.BRElementTest

package com.googlecode.gwt.test.dom;

import static org.junit.Assert.assertEquals;

import org.junit.Before;
import org.junit.Test;

import com.google.gwt.dom.client.BRElement;
import com.google.gwt.dom.client.Document;
import com.googlecode.gwt.test.GwtTestTest;

public class BRElementTest extends GwtTestTest {

   private BRElement b;

   @Test
   public void as() {
      // Act
      BRElement asElement = BRElement.as(b);

      // Assert
      assertEquals(b, asElement);
   }

   @Before
   public void initDocument() {
      b = Document.get().createBRElement();
   }

}
TOP

Related Classes of com.googlecode.gwt.test.dom.BRElementTest

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.