Add a Toolbar TC
authorrina6350.you <rina6350.you@samsung.com>
Thu, 11 May 2017 04:56:23 +0000 (13:56 +0900)
committerrina6350.you <rina6350.you@samsung.com>
Thu, 11 May 2017 04:56:23 +0000 (13:56 +0900)
Change-Id: I1d59c8172ceb0cadf9a3b8e356f3823c67c77287

test/ElmSharp.Test/ElmSharp.Test.csproj
test/ElmSharp.Test/TC/ToolbarTest2.cs [new file with mode: 0755]

index ed2ba74..c03dcef 100755 (executable)
     <Compile Include="TC\SliderTest1.cs" />
     <Compile Include="TC\SpinnerTest1.cs" />
     <Compile Include="TC\ToolbarTest1.cs" />
+    <Compile Include="TC\ToolbarTest2.cs" />
     <Compile Include="TC\WindowInternalTest.cs" />
     <Compile Include="TestCaseBase.cs" />
     <Compile Include="TestRunner.cs" />
   <ProjectExtensions>
     <VisualStudio>
       <FlavorProperties GUID="{2F98DAC9-6F16-457B-AED7-D43CAC379341}" Configuration="Debug|Any CPU">
-        <ProjectCorporateFlavorCfg />
+        <ProjectCommonFlavorCfg />
       </FlavorProperties>
       <FlavorProperties GUID="{2F98DAC9-6F16-457B-AED7-D43CAC379341}" Configuration="Release|Any CPU">
-        <ProjectCorporateFlavorCfg />
+        <ProjectCommonFlavorCfg />
       </FlavorProperties>
     </VisualStudio>
   </ProjectExtensions>
-</Project>
+</Project>
\ No newline at end of file
diff --git a/test/ElmSharp.Test/TC/ToolbarTest2.cs b/test/ElmSharp.Test/TC/ToolbarTest2.cs
new file mode 100755 (executable)
index 0000000..8e19d1d
--- /dev/null
@@ -0,0 +1,73 @@
+/*
+ * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+using System;
+using ElmSharp;
+using System.Collections.Generic;
+
+namespace ElmSharp.Test
+{
+    public class ToolbarTest2 : TestCaseBase
+    {
+        Dictionary<ToolbarItem, int> _itemTable = new Dictionary<ToolbarItem, int>();
+        Dictionary<int, ToolbarItem> _reverseItemTable = new Dictionary<int, ToolbarItem>();
+        public override string TestName => "ToolbarTest2";
+        public override string TestDescription => "To test basic operation of Toolbar";
+        public override void Run(Window window)
+        {
+            Conformant conformant = new Conformant(window);
+            conformant.Show();
+            Box outterBox = new Box(window)
+            {
+                AlignmentX = -1,
+                AlignmentY = -1,
+                WeightX = 1,
+                WeightY = 1,
+                IsHorizontal = false,
+                BackgroundColor = Color.Aqua,
+            };
+            outterBox.Show();
+
+            Toolbar toolbar = new Toolbar(window)
+            {
+                AlignmentX = -1,
+                WeightX = 1,
+            };
+
+            toolbar.Show();
+            outterBox.PackEnd(toolbar);
+
+            int idx = 1;
+            ToolbarItem item = toolbar.Append(string.Format("{0} home", idx), "home");
+            idx++;
+
+            Button bt = new Button(window)
+            {
+                Text = "Add ToolbarItem",
+                MinimumWidth = 400
+            };
+            bt.Clicked += (s, e) =>
+            {
+                ToolbarItem item2 = toolbar.Append(string.Format("{0} home", idx), "home");
+                idx++;
+            };
+
+            bt.Show();
+            outterBox.PackEnd(bt);
+            conformant.SetContent(outterBox);
+        }
+    }
+}