Hi,

I am trying to use Geb with gradle to test out my java web app, but I always
get this "java.lang.IncompatibleClassChangeError: Implementing class"
Exception in the test report, which fails the test. 
 
Has anyone experience the same problem? How should I use geb with gradle? Is
there any simple successful example?

This is the groovy test file I use:

package com.demo.geb

import geb.junit4.GebTest

import org.junit.Test

class DemoTest extends GebTest {
        @Test
        void testSomething() {
                go "/help"
                assert $("h1").text() == "Help"
        }
}


Many thanks.

--
View this message in context: 
http://gradle.1045684.n5.nabble.com/geb-gradle-test-fail-with-java-lang-IncompatibleClassChangeError-Implementing-class-tp3406611p3406611.html
Sent from the gradle-user mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to