Merge "[Telephony] Sample App implementation."
[platform/core/csapi/tizenfx.git] / test / ElmSharp.Test / TC / BackgroundTest2.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
20 namespace ElmSharp.Test
21 {
22     public class BackgroundTest2 : TestCaseBase
23     {
24         public override string TestName => "BackgroundTest2";
25         public override string TestDescription => "To test basic operation of Background";
26
27         public override void Run(Window window)
28         {
29             Background bg1 = new Background(window)
30             {
31                 Color = Color.Orange
32             };
33
34             Background bg2 = new Background(window)
35             {
36                 Color = new Color(60, 128, 255, 100)
37             };
38             Show(bg1, 0, 0, 500, 500);
39             Show(bg2, 100, 100, 500, 500);
40
41             Console.WriteLine("bg1.Color : {0}", bg1.Color.ToString());
42             Console.WriteLine("bg2.Color : {0}", bg2.Color.ToString());
43         }
44
45         void Show(Background bg, int x, int y, int w, int h)
46         {
47             bg.Move(x, y);
48             bg.Resize(w, h);
49             bg.Show();
50         }
51     }
52 }