here's Xtend class, I cannot seems to get eclipse to run configuration of this TestNg file I wrote on eclipse xtend. I installed TestNg Plugin as well, but still I don't see a option. How can I run it?
Does Xtend Plugin or TestNg plugin requires and modifications to support adding the run as configuration ? If so how may I add necessary changes?
MySampleTestng.xtend file
import org.testng.annotations.Test
class MySampleTestng {
@Test
def void testPrintln() {
println("Hello, World.")
}
}