Directory

← Back

Undertow Launcher for Vaadin

Undertow Launcher for Vaadin

Author

Contributors

Rating

Simple launcher for helping app developers run and test their UIs and VaadinServlets.

To use the Test part, the project needs a test scoped dependency for junit version 4.9 or newer.

Junit5 support is being planned.

Sample code

public class MyUI extends UI {

    public static void main(String[] args) {
        UndertowLauncher.withUI(MyUI.class).run();
    }
public class SimpleTest extends ParallelTest {

    @ClassRule
    public static UndertowRule serverRule = UndertowRule.withUI(MyUI.class);

    @Test
    public void testMethod() {
       getDriver().get(serverRule.getServer().getBaseURL());

Compatibility

(Loading compatibility data...)

Was this helpful? Need more help?
Leave a comment or a question below. You can also join the chat on Discord or ask questions on StackOverflow.

Version

Released
2018-03-29
Maturity
EXPERIMENTAL
License
Apache License 2.0

Compatibility

Framework
Vaadin 7.0+
Vaadin 8.0+
Browser
Browser Independent

Undertow Launcher for Vaadin - Vaadin Add-on Directory

Undertow Launcher for Vaadin Undertow Launcher for Vaadin - Vaadin Add-on Directory
Simple launcher for helping app developers run and test their UIs and VaadinServlets. To use the Test part, the project needs a test scoped dependency for junit version 4.9 or newer. Junit5 support is being planned.
Online