summaryrefslogtreecommitdiff
path: root/ElmSharp.Test
diff options
context:
space:
mode:
authordarkleem <cdark.lim@samsung.com>2017-04-18 22:05:13 +0900
committerdarkleem <cdark.lim@samsung.com>2017-04-20 14:49:38 +0900
commit55e5b66c3a7667f0ebddc4554032142c0b8302d3 (patch)
tree00124c7f7bf67ed6526e1b4c76833e20e22a1495 /ElmSharp.Test
parente8046eaa049905d962a83a65c43b076be4e90853 (diff)
downloadelm-sharp-55e5b66c3a7667f0ebddc4554032142c0b8302d3.tar.gz
elm-sharp-55e5b66c3a7667f0ebddc4554032142c0b8302d3.tar.bz2
elm-sharp-55e5b66c3a7667f0ebddc4554032142c0b8302d3.zip
Fixd handle issue and interop function
- fix LabelTest1 Color issue - add LabelTest4(slide animation) Change-Id: Idc58f178a1911188079304ffff07f3501a57e132 Signed-off-by: darkleem <cdark.lim@samsung.com>
Diffstat (limited to 'ElmSharp.Test')
-rwxr-xr-xElmSharp.Test/ElmSharp.Test.csproj1
-rw-r--r--ElmSharp.Test/TC/LabelTest1.cs1
-rw-r--r--ElmSharp.Test/TC/LabelTest4.cs51
3 files changed, 53 insertions, 0 deletions
diff --git a/ElmSharp.Test/ElmSharp.Test.csproj b/ElmSharp.Test/ElmSharp.Test.csproj
index 06513cc..0333f12 100755
--- a/ElmSharp.Test/ElmSharp.Test.csproj
+++ b/ElmSharp.Test/ElmSharp.Test.csproj
@@ -44,6 +44,7 @@
<Compile Include="TC\BackgroundTest2.cs" />
<Compile Include="TC\BackgroundTest3.cs" />
<Compile Include="TC\GenListTest10.cs" />
+ <Compile Include="TC\LabelTest4.cs" />
<Compile Include="TC\MultibuttonEntryTest1.cs" />
<Compile Include="TC\DateTimeSelectorTest2.cs" />
<Compile Include="TC\EntryTest2.cs" />
diff --git a/ElmSharp.Test/TC/LabelTest1.cs b/ElmSharp.Test/TC/LabelTest1.cs
index fb5118b..d09b8ff 100644
--- a/ElmSharp.Test/TC/LabelTest1.cs
+++ b/ElmSharp.Test/TC/LabelTest1.cs
@@ -33,6 +33,7 @@ namespace ElmSharp.Test
bg.Show();
Label label1 = new Label(window);
+ label1.Color = Color.Black;
label1.Text = "Label Test!!!";
label1.Show();
diff --git a/ElmSharp.Test/TC/LabelTest4.cs b/ElmSharp.Test/TC/LabelTest4.cs
new file mode 100644
index 0000000..c7dab02
--- /dev/null
+++ b/ElmSharp.Test/TC/LabelTest4.cs
@@ -0,0 +1,51 @@
+/*
+ * 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 LabelTest4 : TestCaseBase
+ {
+ public override string TestName => "LabelTest4";
+ public override string TestDescription => "To test slide Animation of Label";
+
+ public override void Run(Window window)
+ {
+ Background bg = new Background(window);
+ bg.Color = Color.White;
+ bg.Move(0, 0);
+ bg.Resize(window.ScreenSize.Width, window.ScreenSize.Height);
+ bg.Show();
+
+ Label label1 = new Label(window)
+ {
+ Style = "slide_long",
+ SlideDuration = 3,
+ SlideMode = LabelSlideMode.Always,
+ Color = Color.Black,
+ Text = "Lab test12345678"
+ };
+
+ label1.Show();
+ label1.Resize(200, 30);
+ label1.Move(0, 0);
+ label1.PlaySlide();
+ }
+ }
+}