ExternalResource
implements source for resources fetched from location specified by URL:s. The resources are fetched directly by the client terminal and are not fetched trough the terminal adapter.
@author Vaadin Ltd.
@since 3.0
ExternalResource
implements source for resources fetched from location specified by URL:s. The resources are fetched directly by the client terminal and are not fetched trough the terminal adapter.
@author IT Mill Ltd.
@version 6.7.1
@since 3.0
public static class UsesExternalResource { Server myServer= new Server(); @Rule public ExternalResource resource= new ExternalResource() { @Override protected void before() throws Throwable { myServer.connect(); }; @Override protected void after() { myServer.disconnect(); }; }; @Test public void testFoo() { new Client().run(myServer); } }@since 4.7
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|