Merge "[Telephony] Sample App implementation."
[platform/core/csapi/tizenfx.git] / test / ElmSharp.Test / TC / LabelTest4.cs
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 using System;
18 using ElmSharp;
19 using System.Collections.Generic;
20
21 namespace ElmSharp.Test
22 {
23     public class LabelTest4 : TestCaseBase
24     {
25         public override string TestName => "LabelTest4";
26         public override string TestDescription => "To test slide Animation of Label";
27
28         public override void Run(Window window)
29         {
30             Background bg = new Background(window);
31             bg.Color = Color.White;
32             bg.Move(0, 0);
33             bg.Resize(window.ScreenSize.Width, window.ScreenSize.Height);
34             bg.Show();
35
36             Label label1 = new Label(window)
37             {
38                 Style = "slide_long",
39                 SlideDuration = 3,
40                 SlideMode = LabelSlideMode.Always,
41                 Color = Color.Black,
42                 Text = "Lab test12345678"
43             };
44
45             label1.Show();
46             label1.Resize(200, 30);
47             label1.Move(0, 0);
48             label1.PlaySlide();
49         }
50     }
51 }