]> source.dussan.org Git - vaadin-framework.git/commit
Update TB3+ convention to use a separate *Test file
authorArtur Signell <artur@vaadin.com>
Mon, 7 Oct 2013 15:12:06 +0000 (18:12 +0300)
committerVaadin Code Review <review@vaadin.com>
Tue, 8 Oct 2013 12:25:17 +0000 (12:25 +0000)
commitf488825d46c984cea841534178b094be3a562eea
tree2fe8898d4bb7a520ddfdb7b81e0392abe7a505da
parent63e16e6547b4a7c067a9a1fa53dcecb9d704016b
Update TB3+ convention to use a separate *Test file

For any issue there should be a UI class, e.g. LabelSomething and a
Test class which has the name of the UI + Test, e.g. LabelSomethingTest.
The LabelSomethingTest contains ALL tests which depend on LabelSomething
and are named accordingly to what they test.

For special and legacy cases also LegacyApplication and UIProvider are
supported in addition to UI classes

Change-Id: Ifc0180b377284bbd029202494ad194d324f8213b
30 files changed:
uitest/src/com/vaadin/tests/VerifyBrowserVersion.java
uitest/src/com/vaadin/tests/VerifyBrowserVersionTest.java [new file with mode: 0644]
uitest/src/com/vaadin/tests/components/label/LabelModes.java
uitest/src/com/vaadin/tests/components/label/LabelModesTest.java [new file with mode: 0644]
uitest/src/com/vaadin/tests/components/orderedlayout/HorizontalLayoutFullsizeContentWithErrorMsg.java
uitest/src/com/vaadin/tests/components/orderedlayout/HorizontalLayoutFullsizeContentWithErrorMsgTest.java [new file with mode: 0644]
uitest/src/com/vaadin/tests/components/panel/PanelChangeContentsTest.java [new file with mode: 0644]
uitest/src/com/vaadin/tests/components/slider/SliderDisable.java
uitest/src/com/vaadin/tests/components/slider/SliderDisableTest.java [new file with mode: 0644]
uitest/src/com/vaadin/tests/components/ui/UIAccess.java
uitest/src/com/vaadin/tests/components/ui/UIAccessTest.java [new file with mode: 0644]
uitest/src/com/vaadin/tests/push/BarInUIDL.java
uitest/src/com/vaadin/tests/push/BarInUIDLTest.java [new file with mode: 0644]
uitest/src/com/vaadin/tests/push/BasicPush.java
uitest/src/com/vaadin/tests/push/BasicPushStreaming.java
uitest/src/com/vaadin/tests/push/BasicPushStreamingTest.java [new file with mode: 0644]
uitest/src/com/vaadin/tests/push/BasicPushTest.java [new file with mode: 0644]
uitest/src/com/vaadin/tests/push/BasicPushWebsocket.java
uitest/src/com/vaadin/tests/push/BasicPushWebsocketTest.java [new file with mode: 0644]
uitest/src/com/vaadin/tests/push/PushConfiguration.java [new file with mode: 0644]
uitest/src/com/vaadin/tests/push/PushConfigurationTest.java
uitest/src/com/vaadin/tests/push/PushFromInit.java
uitest/src/com/vaadin/tests/push/PushFromInitTest.java [new file with mode: 0644]
uitest/src/com/vaadin/tests/push/PushReattachedComponent.java [deleted file]
uitest/src/com/vaadin/tests/push/TogglePush.java
uitest/src/com/vaadin/tests/push/TogglePushTest.java [new file with mode: 0644]
uitest/src/com/vaadin/tests/push/TrackMessageSizeUI.java [new file with mode: 0644]
uitest/src/com/vaadin/tests/push/TrackMessageSizeUITest.java [new file with mode: 0644]
uitest/src/com/vaadin/tests/push/TrackMessageSizeUnitTests.java [deleted file]
uitest/src/com/vaadin/tests/tb3/AbstractTB3Test.java