From abbfa151da06229577107e8aef7bd97c45413382 Mon Sep 17 00:00:00 2001 From: Kangho Hur Date: Mon, 22 Oct 2018 16:11:55 +0900 Subject: [PATCH] [ElmSharp] Enhance the Pane's TC to make it better clear Change-Id: Ifedaf1c1e03a4ed560d9810d708cd9813d0095d9 --- .../testcase/TSPanes.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSPanes.cs b/tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSPanes.cs index c6eaa2e..c6bebd3 100644 --- a/tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSPanes.cs +++ b/tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSPanes.cs @@ -58,6 +58,28 @@ namespace ElmSharp.Tests LogUtils.Write(LogUtils.DEBUG, LogUtils.TAG, "CreatePanes"); _panes = new Panes(_window); + Rectangle redBox = new Rectangle(_window) + { + AlignmentX = -1, + AlignmentY = -1, + WeightX = 1, + WeightY = 1, + Color = Color.Red, + }; + redBox.Show(); + + Rectangle blueBox = new Rectangle(_window) + { + AlignmentX = -1, + AlignmentY = -1, + WeightX = 1, + WeightY = 1, + Color = Color.Blue, + }; + + _panes.SetPartContent("left", redBox); + _panes.SetPartContent("right", blueBox); + _testPage.ExecuteTCByPage(_panes); } -- 2.7.4