]> source.dussan.org Git - vaadin-framework.git/commit
Add Navigator testing to Spring Boot test (#10174)
authorTeemu Suo-Anttila <tsuoanttila@users.noreply.github.com>
Fri, 13 Oct 2017 06:44:32 +0000 (09:44 +0300)
committerGitHub <noreply@github.com>
Fri, 13 Oct 2017 06:44:32 +0000 (09:44 +0300)
commit569072dccd09a018850abb3a7f9d39373c082d4f
tree03b19813308487fa1f83437edc0f75ee692511dc
parentc147b5d85bca3ddf30d9adbcd268066165889f37
Add Navigator testing to Spring Boot test (#10174)
31 files changed:
test/pom.xml
test/spring-boot-subcontext/pom.xml [new file with mode: 0644]
test/spring-boot-subcontext/src/main/java/com/example/CustomSpringNavigator.java [new file with mode: 0644]
test/spring-boot-subcontext/src/main/java/com/example/DemoApplication.java [new file with mode: 0644]
test/spring-boot-subcontext/src/main/java/com/example/ThankYouService.java [new file with mode: 0644]
test/spring-boot-subcontext/src/main/java/com/example/ViewGreeter.java [new file with mode: 0644]
test/spring-boot-subcontext/src/main/java/com/example/ui/AbstractSpringUI.java [new file with mode: 0644]
test/spring-boot-subcontext/src/main/java/com/example/ui/RootPathUI.java [new file with mode: 0644]
test/spring-boot-subcontext/src/main/java/com/example/ui/SubPathUI.java [new file with mode: 0644]
test/spring-boot-subcontext/src/main/java/com/example/view/DefaultView.java [new file with mode: 0644]
test/spring-boot-subcontext/src/main/java/com/example/view/UIScopedView.java [new file with mode: 0644]
test/spring-boot-subcontext/src/main/java/com/example/view/ViewDisplayPanel.java [new file with mode: 0644]
test/spring-boot-subcontext/src/main/java/com/example/view/ViewScopedView.java [new file with mode: 0644]
test/spring-boot-subcontext/src/main/resources/application.properties [new file with mode: 0644]
test/spring-boot-subcontext/src/test/java/com/example/VaadinSpringBootPushStateNavigatorIT.java [new file with mode: 0644]
test/spring-boot-subcontext/src/test/java/com/example/VaadinSpringBootSmokeIT.java [new file with mode: 0644]
test/spring-boot-subcontext/src/test/java/com/example/VaadinSpringBootURIFragmentNavigatorIT.java [new file with mode: 0644]
test/spring-boot/pom.xml
test/spring-boot/src/main/java/com/example/CustomSpringNavigator.java [new file with mode: 0644]
test/spring-boot/src/main/java/com/example/DemoApplication.java
test/spring-boot/src/main/java/com/example/ViewGreeter.java [new file with mode: 0644]
test/spring-boot/src/main/java/com/example/ui/AbstractSpringUI.java [new file with mode: 0644]
test/spring-boot/src/main/java/com/example/ui/RootPathUI.java [new file with mode: 0644]
test/spring-boot/src/main/java/com/example/ui/SubPathUI.java [new file with mode: 0644]
test/spring-boot/src/main/java/com/example/view/DefaultView.java [new file with mode: 0644]
test/spring-boot/src/main/java/com/example/view/UIScopedView.java [new file with mode: 0644]
test/spring-boot/src/main/java/com/example/view/ViewDisplayPanel.java [new file with mode: 0644]
test/spring-boot/src/main/java/com/example/view/ViewScopedView.java [new file with mode: 0644]
test/spring-boot/src/test/java/com/example/VaadinSpringBootPushStateNavigatorIT.java [new file with mode: 0644]
test/spring-boot/src/test/java/com/example/VaadinSpringBootSmokeIT.java
test/spring-boot/src/test/java/com/example/VaadinSpringBootURIFragmentNavigatorIT.java [new file with mode: 0644]