- Note
- This Source File belongs to Views Example Example. Please follow the link for example explanation.
#include <AUI/UITest.h>
#include <AUI/Util/UIBuildingHelpers.h>
#include <AUI/View/AButton.h>
#include <ExampleWindow.h>
#include <AUI/View/ATextField.h>
public:
protected:
void SetUp() override {
UITest::SetUp();
_new<ExampleWindow>()->show();
}
void TearDown() override {
UITest::TearDown();
}
};
TEST_F(UILayoutManager, Height) {
(By::text("Common button") | By::text("Show all views...")).check(sameHeight(), "height mismatch");
}
TEST_F(UILayoutManager, LastElementAlignment) {
By::name("#copyright").check(widthIsMinimal(), "copyright width should be minimal");
}
TEST_F(UILayoutManager, ButtonsAlignment) {
By::name("Common button")
.parent()
.allChildren()
.check(leftRightAligned(), "elements should be perfectly aligned");
}
Definition UITestCase.h:26