From acea78754728d741bef1cef22c8d05ef64a95412 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Sun, 31 Jul 2016 20:12:18 +0200 Subject: [PATCH] [ticket/686] Add possibility to use UI tests B3P-686 --- tests/testframework/ui_test_case.php | 18 +++++++++++++++++ tests/ui/portal_visit_ui_test.php | 29 ++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 tests/testframework/ui_test_case.php create mode 100644 tests/ui/portal_visit_ui_test.php diff --git a/tests/testframework/ui_test_case.php b/tests/testframework/ui_test_case.php new file mode 100644 index 00000000..86011a4e --- /dev/null +++ b/tests/testframework/ui_test_case.php @@ -0,0 +1,18 @@ +purge_cache(); + + $this->login(); + $this->admin_login(); + } + + public function test_vanilla_board() + { + $this->visit('app.php/portal'); + } +}