From: hyunho Date: Thu, 26 Sep 2019 04:35:56 +0000 (+0900) Subject: [ComponentBased][Non-ACR][Update button font size] X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c1da7b23bc03568a15ab2bc61a0de9daa43a9888;p=test%2Ftct%2Fcsharp%2Fapi.git [ComponentBased][Non-ACR][Update button font size] Change-Id: Ia492f160f92cc386b15e022be60be3d09c05d416 Signed-off-by: hyunho --- diff --git a/tct-suite-vs/Resource/Tizen.ComponentBased.Manual.Tests/ComponentBasedTest.tar b/tct-suite-vs/Resource/Tizen.ComponentBased.Manual.Tests/ComponentBasedTest.tar index 0a15c06c8..650ed2229 100644 Binary files a/tct-suite-vs/Resource/Tizen.ComponentBased.Manual.Tests/ComponentBasedTest.tar and b/tct-suite-vs/Resource/Tizen.ComponentBased.Manual.Tests/ComponentBasedTest.tar differ diff --git a/tct-suite-vs/Resource/Tizen.ComponentBased.Manual.Tests/org.tizen.example.ComponentBasedTest-1.0.0.tpk b/tct-suite-vs/Resource/Tizen.ComponentBased.Manual.Tests/org.tizen.example.ComponentBasedTest-1.0.0.tpk index f95d906fb..8115346da 100644 Binary files a/tct-suite-vs/Resource/Tizen.ComponentBased.Manual.Tests/org.tizen.example.ComponentBasedTest-1.0.0.tpk and b/tct-suite-vs/Resource/Tizen.ComponentBased.Manual.Tests/org.tizen.example.ComponentBasedTest-1.0.0.tpk differ diff --git a/tct-suite-vs/Tizen.ComponentBased.Default.Manual.Tests/testcase/TSEFLComponentBasedApplication.cs b/tct-suite-vs/Tizen.ComponentBased.Default.Manual.Tests/testcase/TSEFLComponentBasedApplication.cs index 5803dc7eb..177a68ac5 100644 --- a/tct-suite-vs/Tizen.ComponentBased.Default.Manual.Tests/testcase/TSEFLComponentBasedApplication.cs +++ b/tct-suite-vs/Tizen.ComponentBased.Default.Manual.Tests/testcase/TSEFLComponentBasedApplication.cs @@ -59,7 +59,6 @@ namespace Tizen.EFLComponentBasedApplication.Tests _comp_button = new Button() { Text = btnText, - FontSize = 20, VerticalOptions = LayoutOptions.Center, HorizontalOptions = LayoutOptions.FillAndExpand, }; @@ -91,7 +90,7 @@ namespace Tizen.EFLComponentBasedApplication.Tests [Postcondition(1, "Close the terminal")] public async Task OnInit_MANUAL_TEST() { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -113,7 +112,7 @@ namespace Tizen.EFLComponentBasedApplication.Tests [Postcondition(1, "Close the terminal")] public async Task OnRun_MANUAL_TEST() { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -135,7 +134,7 @@ namespace Tizen.EFLComponentBasedApplication.Tests [Postcondition(1, "Close the terminal")] public async Task OnExit_MANUAL_TEST() { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -158,7 +157,7 @@ namespace Tizen.EFLComponentBasedApplication.Tests [Postcondition(1, "Close the terminal")] public async Task OnFinished_MANUAL_TEST() { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ diff --git a/tct-suite-vs/Tizen.ComponentBased.Manual.Tests/testcase/TSBaseComponent.cs b/tct-suite-vs/Tizen.ComponentBased.Manual.Tests/testcase/TSBaseComponent.cs index 0e9113a61..a4266f9a1 100644 --- a/tct-suite-vs/Tizen.ComponentBased.Manual.Tests/testcase/TSBaseComponent.cs +++ b/tct-suite-vs/Tizen.ComponentBased.Manual.Tests/testcase/TSBaseComponent.cs @@ -64,7 +64,6 @@ namespace Tizen.ComponentBasedApplication.Tests _comp_button = new Button() { Text = btnText, - FontSize = 20, VerticalOptions = LayoutOptions.Center, HorizontalOptions = LayoutOptions.FillAndExpand, }; @@ -97,7 +96,7 @@ namespace Tizen.ComponentBasedApplication.Tests [Postcondition(1, "Close the terminal")] public async Task Finish_MANUAL_TEST() { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -121,7 +120,7 @@ namespace Tizen.ComponentBasedApplication.Tests [Postcondition(2, "Press launched application's 'Exit' button")] public async Task OnRestoreContents_MANUAL_TEST() { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -145,7 +144,7 @@ namespace Tizen.ComponentBasedApplication.Tests [Postcondition(1, "Close the terminal")] public async Task OnSaveContent_MANUAL_TEST() { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -168,7 +167,7 @@ namespace Tizen.ComponentBasedApplication.Tests [Postcondition(2, "Press launched application's 'Exit' button")] public async Task SendLaunchRequestAsync_MANUAL_TEST() { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -192,7 +191,7 @@ namespace Tizen.ComponentBasedApplication.Tests [Postcondition(2, "Press launched application's 'Exit' button")] public async Task ComponentId_MANUAL_TEST() { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -216,7 +215,7 @@ namespace Tizen.ComponentBasedApplication.Tests [Postcondition(2, "Press launched application's 'Exit' button")] public async Task Id_MANUAL_TEST() { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -240,7 +239,7 @@ namespace Tizen.ComponentBasedApplication.Tests [Postcondition(2, "Press launched application's 'Exit' button")] public async Task Parent_MANUAL_TEST() { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -278,7 +277,7 @@ namespace Tizen.ComponentBasedApplication.Tests } else { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -315,7 +314,7 @@ namespace Tizen.ComponentBasedApplication.Tests } else { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -351,7 +350,7 @@ namespace Tizen.ComponentBasedApplication.Tests } else { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -379,7 +378,7 @@ namespace Tizen.ComponentBasedApplication.Tests [Postcondition(2, "Press launched application's 'Exit' button")] public async Task LocaleChanged_EVENT_TEST() { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -408,7 +407,7 @@ namespace Tizen.ComponentBasedApplication.Tests [Postcondition(2, "Press launched application's 'Exit' button")] public async Task RegionFormatChanged_EVENT_TEST() { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -434,7 +433,7 @@ namespace Tizen.ComponentBasedApplication.Tests [Postcondition(2, "Press launched application's 'Exit' button")] public async Task SuspendedStateChanged_EVENT_TEST() { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -454,13 +453,13 @@ namespace Tizen.ComponentBasedApplication.Tests [Precondition(3, "Enter command \"sdb dlog | grep ComponentBasedTest\" to terminal")] [Step(1, "Click run TC")] [Step(2, "Press 'Click me' button")] - [Step(3, "Press launched application's 'Launch Not Exist App' button")] + [Step(3, "Press launched application's 'Launch Not Exist' button")] [Step(4, "Check if log show \"OnLaunchNotExistClick > Async result : AppNotFound\".")] [Postcondition(1, "Close the terminal")] [Postcondition(2, "Press launched application's 'Exit' button")] public async Task SendLaunchRequestAsync_AppNotFoundException() { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ diff --git a/tct-suite-vs/Tizen.ComponentBased.Manual.Tests/testcase/TSComponentBasedApplication.cs b/tct-suite-vs/Tizen.ComponentBased.Manual.Tests/testcase/TSComponentBasedApplication.cs index 4aec8302c..63ea70a59 100644 --- a/tct-suite-vs/Tizen.ComponentBased.Manual.Tests/testcase/TSComponentBasedApplication.cs +++ b/tct-suite-vs/Tizen.ComponentBased.Manual.Tests/testcase/TSComponentBasedApplication.cs @@ -58,7 +58,6 @@ namespace Tizen.ComponentBasedApplication.Tests _comp_button = new Button() { Text = btnText, - FontSize = 20, VerticalOptions = LayoutOptions.Center, HorizontalOptions = LayoutOptions.FillAndExpand, }; @@ -92,7 +91,7 @@ namespace Tizen.ComponentBasedApplication.Tests [Postcondition(2, "Press launched application's 'Exit' button")] public async Task Run_MANUAL_TEST() { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -117,7 +116,7 @@ namespace Tizen.ComponentBasedApplication.Tests public async Task OnInit_MANUAL_TEST() { //await TermiatePreviousApp(); - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -142,7 +141,7 @@ namespace Tizen.ComponentBasedApplication.Tests public async Task OnRun_MANUAL_TEST() { //await TermiatePreviousApp(); - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -167,7 +166,7 @@ namespace Tizen.ComponentBasedApplication.Tests public async Task OnExit_MANUAL_TEST() { //await TermiatePreviousApp(); - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -191,7 +190,7 @@ namespace Tizen.ComponentBasedApplication.Tests [Postcondition(1, "Close the terminal")] public async Task OnFinished_MANUAL_TEST() { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -215,7 +214,7 @@ namespace Tizen.ComponentBasedApplication.Tests [Postcondition(1, "Close the terminal")] public async Task Exit_MANUAL_TEST() { - CreateCompButton("Click me!! Test: Check whether ComponentBased Application is successfully terminated or not"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ diff --git a/tct-suite-vs/Tizen.ComponentBased.Manual.Tests/testcase/TSFrameComponent.cs b/tct-suite-vs/Tizen.ComponentBased.Manual.Tests/testcase/TSFrameComponent.cs index 9f6bae8c3..83295baf9 100644 --- a/tct-suite-vs/Tizen.ComponentBased.Manual.Tests/testcase/TSFrameComponent.cs +++ b/tct-suite-vs/Tizen.ComponentBased.Manual.Tests/testcase/TSFrameComponent.cs @@ -64,7 +64,6 @@ namespace Tizen.ComponentBasedApplication.Tests _comp_button = new Button() { Text = btnText, - FontSize = 20, VerticalOptions = LayoutOptions.Center, HorizontalOptions = LayoutOptions.FillAndExpand, }; @@ -97,7 +96,7 @@ namespace Tizen.ComponentBasedApplication.Tests [Postcondition(2, "Press launched application's 'Exit' button")] public async Task CreateWindowInfo_MANUAL_TEST() { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -121,7 +120,7 @@ namespace Tizen.ComponentBasedApplication.Tests [Postcondition(2, "Press launched application's 'Exit' button")] public async Task OnCreate_MANUAL_TEST() { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -146,7 +145,7 @@ namespace Tizen.ComponentBasedApplication.Tests [Postcondition(2, "Press launched application's 'Exit' button")] public async Task OnDestroy_MANUAL_TEST() { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -171,7 +170,7 @@ namespace Tizen.ComponentBasedApplication.Tests [Postcondition(2, "Press launched application's 'Exit' button")] public async Task OnPause_MANUAL_TEST() { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -196,7 +195,7 @@ namespace Tizen.ComponentBasedApplication.Tests [Postcondition(2, "Press launched application's 'Exit' button")] public async Task OnResume_MANUAL_TEST() { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -220,7 +219,7 @@ namespace Tizen.ComponentBasedApplication.Tests [Postcondition(2, "Press launched application's 'Exit' button")] public async Task OnStart_MANUAL_TEST() { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -244,7 +243,7 @@ namespace Tizen.ComponentBasedApplication.Tests [Postcondition(1, "Close the terminal")] public async Task OnStop_MANUAL_TEST() { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -269,7 +268,7 @@ namespace Tizen.ComponentBasedApplication.Tests [Postcondition(2, "Press launched application's 'Exit' button")] public async Task DisplayStatus_MANUAL_TEST() { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ diff --git a/tct-suite-vs/Tizen.ComponentBased.Manual.Tests/testcase/TSServiceComponent.cs b/tct-suite-vs/Tizen.ComponentBased.Manual.Tests/testcase/TSServiceComponent.cs index dc4ee1658..2b745cf3f 100644 --- a/tct-suite-vs/Tizen.ComponentBased.Manual.Tests/testcase/TSServiceComponent.cs +++ b/tct-suite-vs/Tizen.ComponentBased.Manual.Tests/testcase/TSServiceComponent.cs @@ -64,7 +64,6 @@ namespace Tizen.ComponentBasedApplication.Tests _comp_button = new Button() { Text = btnText, - FontSize = 20, VerticalOptions = LayoutOptions.Center, HorizontalOptions = LayoutOptions.FillAndExpand, }; @@ -96,7 +95,7 @@ namespace Tizen.ComponentBasedApplication.Tests [Postcondition(1, "Close the terminal")] public async Task OnCreate_MANUAL_TEST() { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -119,7 +118,7 @@ namespace Tizen.ComponentBasedApplication.Tests [Postcondition(1, "Close the terminal")] public async Task OnDestroy_MANUAL_TEST() { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */ @@ -142,7 +141,7 @@ namespace Tizen.ComponentBasedApplication.Tests [Postcondition(1, "Close the terminal")] public async Task OnStartCommand_MANUAL_TEST() { - CreateCompButton("Click me!! Test: Launch ComponentBased Application"); + CreateCompButton("Click me!!"); _comp_button.Clicked += OnClick; /* TEST CODE */