google-code-export / gwt-test-utils

Automatically exported from code.google.com/p/gwt-test-utils
1 stars 0 forks source link

java.lang.UnsatisfiedLinkError #7

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Write a UnitTest, that extends AbstractGwtTest
2. add a test-Method
3. put the following line in this test

@Test
public void example() {
   Label panel = new Label();

   panel.getElement().getStyle().setOpacity(1.0);

}

What is the expected output? What do you see instead?
A running Test, but I get this exception:
java.lang.UnsatisfiedLinkError: 
com.google.gwt.dom.client.DOMImpl.cssSetOpacity(Lcom/google/gwt/dom/client/Style
;D)V
at com.google.gwt.dom.client.DOMImpl.cssSetOpacity(Native Method)
at com.google.gwt.dom.client.Style.setOpacity(Style.java:1295)

What version of the product are you using? On what operating system?
0.16 on Windows

Original issue reported on code.google.com by Vieg...@gmail.com on 27 Jul 2010 at 8:39

GoogleCodeExporter commented 9 years ago

Original comment by gael.laz...@gmail.com on 30 Jul 2010 at 9:19

GoogleCodeExporter commented 9 years ago
Problem fixed in version 0.18 (commit 444)

I also patch all Style method and tested them. GWT Style API in now fully 
managed by gwt-test-utils (commit 447)

A snapshot version has been deployed so you can test it :-)

Original comment by gael.laz...@gmail.com on 30 Jul 2010 at 1:21

GoogleCodeExporter commented 9 years ago

Original comment by gael.laz...@gmail.com on 1 Mar 2011 at 4:38