From: Feng Jin Date: Thu, 31 Jan 2019 17:00:46 +0000 (+0800) Subject: [NUI][Non-ACR][Update TCTs for Tizen.NUI] X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a3d028b5e02f088f112997021793fa3a5bfc7a18;p=test%2Ftct%2Fcsharp%2Fapi.git [NUI][Non-ACR][Update TCTs for Tizen.NUI] Change-Id: I401ea9ed9a671a122d11098d7fd81e4a879bd9af --- diff --git a/tct-suite-vs/Resource/Tizen.NUI.Manual.Tests/code/Tizen.NUI.NUIApplications.Manual.Tests/NUIApplicationsManualTests.sln b/tct-suite-vs/Resource/Tizen.NUI.Manual.Tests/code/Tizen.NUI.NUIApplications.Manual.Tests/NUIApplicationsManualTests.sln new file mode 100755 index 0000000..ebe85f4 --- /dev/null +++ b/tct-suite-vs/Resource/Tizen.NUI.Manual.Tests/code/Tizen.NUI.NUIApplications.Manual.Tests/NUIApplicationsManualTests.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.27004.2005 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NUIApplicationsManualTests", "NUIApplicationsManualTests\NUIApplicationsManualTests.csproj", "{FB08038D-5F7A-4479-8073-A6274A85C94D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {FB08038D-5F7A-4479-8073-A6274A85C94D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FB08038D-5F7A-4479-8073-A6274A85C94D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FB08038D-5F7A-4479-8073-A6274A85C94D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FB08038D-5F7A-4479-8073-A6274A85C94D}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {51811D09-F82C-4F08-8264-6A2730785E28} + EndGlobalSection +EndGlobal diff --git a/tct-suite-vs/Resource/Tizen.NUI.Manual.Tests/code/Tizen.NUI.NUIApplications.Manual.Tests/NUIApplicationsManualTests/NUIApplicationsManualTests.csproj b/tct-suite-vs/Resource/Tizen.NUI.Manual.Tests/code/Tizen.NUI.NUIApplications.Manual.Tests/NUIApplicationsManualTests/NUIApplicationsManualTests.csproj new file mode 100755 index 0000000..ce1e382 --- /dev/null +++ b/tct-suite-vs/Resource/Tizen.NUI.Manual.Tests/code/Tizen.NUI.NUIApplications.Manual.Tests/NUIApplicationsManualTests/NUIApplicationsManualTests.csproj @@ -0,0 +1,53 @@ + + + + + $(MSBuildExtensionsPath)\Tizen\VisualStudio\ + Debug;Release + + + + + + Exe + netcoreapp2.0 + + + + + true + + + + + portable + + + None + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tct-suite-vs/Resource/Tizen.NUI.Manual.Tests/code/Tizen.NUI.NUIApplications.Manual.Tests/NUIApplicationsManualTests/src/NUIApplicationsManualTests.cs b/tct-suite-vs/Resource/Tizen.NUI.Manual.Tests/code/Tizen.NUI.NUIApplications.Manual.Tests/NUIApplicationsManualTests/src/NUIApplicationsManualTests.cs new file mode 100755 index 0000000..3ff9e4e --- /dev/null +++ b/tct-suite-vs/Resource/Tizen.NUI.Manual.Tests/code/Tizen.NUI.NUIApplications.Manual.Tests/NUIApplicationsManualTests/src/NUIApplicationsManualTests.cs @@ -0,0 +1,387 @@ +using System; +using System.Runtime.InteropServices; +using Tizen.Applications; +using Tizen.NUI; +using Tizen.NUI.UIComponents; +using Tizen.NUI.BaseComponents; +using Tizen.NUI.Constants; +using Tizen; + +namespace NUIApplicationsManualTests +{ + /// + /// A sample of NUIApplication + /// + class NUIApplicationsManualTests : NUIApplication + { + public delegate void AddIdleTest(); + public void OnButtonPressed() + { + Log.Fatal("TCT", "Call Exit()"); + Exit(); + } + protected override void OnPreCreate() + { + Log.Fatal("TCT", "[TestCase][OnPreCreate][NUIApplication] Pass"); + base.OnPreCreate(); + } + protected override void OnCreate() + { + Tizen.NUI.Window.Instance.BackgroundColor = Color.White; + + PushButton pauseButton = new PushButton(); + pauseButton.LabelText = "PAUSE"; + pauseButton.Size2D = new Size2D(400, 80); + pauseButton.Position2D = new Position2D(0, 0); + pauseButton.Clicked += (obj, e) => + { + OnPause(); + return true; + }; + Window.Instance.Add(pauseButton); + + PushButton resumeButton = new PushButton(); + resumeButton.LabelText = "RESUME"; + resumeButton.Size2D = new Size2D(400, 80); + resumeButton.Position2D = new Position2D(0, 100); + resumeButton.Clicked += (obj, e) => + { + OnResume(); + return true; + }; + Window.Instance.Add(resumeButton); + + PushButton exitButton = new PushButton(); + exitButton.LabelText = "EXIT"; + exitButton.Size2D = new Size2D(400, 80); + exitButton.Position2D = new Position2D(0, 200); + + exitButton.Clicked += (obj, e) => + { + Exit(); + return true; + }; + Window.Instance.Add(exitButton); + + PushButton addIdleButton = new PushButton(); + addIdleButton.LabelText = "ADDIDLE"; + addIdleButton.Size2D = new Size2D(400, 80); + addIdleButton.Position2D = new Position2D(0, 300); + addIdleButton.Clicked += (obj, e) => + { + AddIdleTest addIdleTest = new AddIdleTest(MyDelegate); + AddIdle(addIdleTest); + return true; + }; + + Window.Instance.Add(addIdleButton); + + pauseButton.DownFocusableView = resumeButton; + resumeButton.UpFocusableView = pauseButton; + resumeButton.DownFocusableView = exitButton; + exitButton.UpFocusableView = resumeButton; + exitButton.DownFocusableView = addIdleButton; + addIdleButton.UpFocusableView = exitButton; + + + FocusManager.Instance.SetCurrentFocusView(pauseButton); + + base.OnCreate(); + + Log.Fatal("TCT", "[TestCase][OnCreate][NUIApplication] Pass"); + } + + public static void MyDelegate() + { + Log.Fatal("TCT", "[TestCase][AddIdle][NUIApplication] Pass"); + } + + protected override void OnResume() + { + Log.Fatal("TCT", "[TestCase][OnResume][NUIApplication] Pass"); + base.OnResume(); + } + + protected override void OnPause() + { + Log.Fatal("TCT", "[TestCase][OnPause][NUIApplication] Pass"); + base.OnPause(); + } + + protected override void OnTerminate() + { + Log.Fatal("TCT", "NUIApplication::OnTerminate()"); + Log.Fatal("TCT", "[TestCase][OnTerminate][NUIApplication] Pass"); + base.OnTerminate(); + } + + protected override void OnAppControlReceived(AppControlReceivedEventArgs e) + { + Log.Fatal("TCT", "NUIApplication::OnAppControlReceived()"); + if (e.ReceivedAppControl != null) + { + Log.Fatal("TCT", "[TestCase][Test_Properties] ReceivedAppControl properties is not null"); + Log.Fatal("TCT", "[TestCase][Test_Properties] ReceivedAppControl Type: " + e.ReceivedAppControl.GetType()); + } + Log.Fatal("TCT", "[TestCase][OnAppControlReceived][NUIApplication] Pass"); + + base.OnAppControlReceived(e); + ShowPropertiesInfo(); + } + + protected override void OnLocaleChanged(LocaleChangedEventArgs e) + { + Log.Fatal("TCT", "NUIApplication::OnLocaleChanged()"); + if (e.Locale != null) + { + Log.Fatal("TCT", "[Test_Properties] Locale properties is not null"); + Log.Fatal("TCT", "[Test_Properties] Current value of Locale : " + e.Locale); + Log.Fatal("TCT", "[Test_Properties] Locale type: " + e.Locale.GetType()); + } + + Log.Fatal("TCT", "[TestCase][OnLocaleChanged][NUIApplication] Pass"); + base.OnLocaleChanged(e); + } + + protected override void OnRegionFormatChanged(RegionFormatChangedEventArgs e) + { + Log.Fatal("TCT", "NUIApplication::OnRegionFormatChanged()"); + if (e != null) + { + Log.Fatal("TCT", "[Test_Properties] Region properties is not null"); + Log.Fatal("TCT", "[Test_Properties] Current value of Region : " + e.Region); + Log.Fatal("TCT", "[Test_Properties] Region type: " + e.Region.GetType()); + } + + Log.Fatal("TCT", "[TestCase][OnRegionFormatChanged][NUIApplication] Pass"); + base.OnRegionFormatChanged(e); + } + + protected override void OnDeviceOrientationChanged(DeviceOrientationEventArgs e) + { + Log.Fatal("TCT", "NUIApplication::OnDeviceOrientationChanged()"); + if (e != null) + { + Log.Fatal("TCT", "[Test_Properties] DeviceOrientation properties is not null"); + Log.Fatal("TCT", "[Test_Properties] Current value of DeviceOrientation : " + e.DeviceOrientation); + Log.Fatal("TCT", "[Test_Properties] DeviceOrientation type: " + e.DeviceOrientation.GetType()); + } + + Log.Fatal("TCT", "[TestCase][OnDeviceOrientationChanged][NUIApplication] Pass"); + base.OnDeviceOrientationChanged(e); + } + + protected override void OnLowMemory(LowMemoryEventArgs e) + { + Log.Fatal("TCT", "NUIApplication::OnLowMemory()"); + if (e.LowMemoryStatus != LowMemoryStatus.None) + { + Log.Fatal("TCT", "[Test_Properties] LowMemoryStatus properties is not null"); + Log.Fatal("TCT", "[Test_Properties] Current value of LowMemoryStatus : " + e.LowMemoryStatus.ToString()); + Log.Fatal("TCT", "[Test_Properties] LowMemoryStatus type: " + e.LowMemoryStatus.GetType()); + } + Log.Fatal("TCT", "[TestCase][OnLowMemory][NUIApplication] Pass"); + + base.OnLowMemory(e); + } + + protected override void OnLowBattery(LowBatteryEventArgs e) + { + Log.Fatal("TCT", "NUIApplication::OnLowBattery()"); + if (e.LowBatteryStatus != LowBatteryStatus.None) + { + Log.Fatal("TCT", "[Test_Properties] LowBatteryStatus properties is not null"); + Log.Fatal("TCT", "[Test_Properties] Current value of LowBatteryStatus : " + e.LowBatteryStatus.ToString()); + Log.Fatal("TCT", "[Test_Properties] LowBatteryStatus type: " + e.LowBatteryStatus.GetType()); + } + + Log.Fatal("TCT", "[TestCase][OnLowBattery][NUIApplication] Pass"); + + base.OnLowBattery(e); + } + + public override void Run(string[] args) + { + Created += Created_Event_Test; + AppControlReceived += AppControlReceived_Event_Test; + LocaleChanged += LocaleChanged_Event_Test; + LowMemory += LowMemory_Event_Test; + LowBattery += LowBattery_Event_Test; + Terminated += Terminated_Event_Test; + Paused += Paused_Event_Test; + Resumed += Resumed_Event_Test; + DeviceOrientationChanged += DeviceOrientationCHanged_Event_Test; + RegionFormatChanged += RegionFormatChanged_Event_Test; + + Log.Fatal("TCT", "[TestCase][Run][NUIApplication] Pass"); + + base.Run(args); + } + + private void Terminated_Event_Test(object sender, EventArgs e) + { + /* + * SCENARIO: + * Launch app + * -> If log show "NUIApplication::Terminated_Event_Test()" -> PASS + */ + Log.Fatal("TCT", "NUIApplication::Terminated_Event_Test"); + Log.Fatal("TCT", "[TestCase][Terminated_Event_Test][NUIApplication] Pass"); + } + + private void LocaleChanged_Event_Test(object sender, LocaleChangedEventArgs e) + { + /* + * SCENARIO: + * Launch app + * -> If log show "NUIApplication::LocaleChanged_Event_Test()" -> PASS + */ + Log.Fatal("TCT", "NUIApplication::LocaleChanged_Event_Test"); + Log.Fatal("TCT", "NUIApplication::LocaleChanged_Event_Test: new located - " + e.Locale); + Log.Fatal("TCT", "[TestCase][LocaleChanged_Event_Test][NUIApplication] Pass"); + } + + private void RegionFormatChanged_Event_Test(object sender, RegionFormatChangedEventArgs e) + { + Log.Fatal("TCT", "NUIApplication::RegionFormatChanged_Event_Test"); + Log.Fatal("TCT", "NUIApplication::RegionFormatChanged_Event_Test: new region - " + e.Region); + Log.Fatal("TCT", "[TestCase][RegionFormatChanged_Event_Test][NUIApplication] Pass"); + } + + private void DeviceOrientationCHanged_Event_Test(object sender, DeviceOrientationEventArgs e) + { + Log.Fatal("TCT", "NUIApplication::DeviceOrientationCHanged_Event_Test"); + Log.Fatal("TCT", "NUIApplication::DeviceOrientationCHanged_Event_Test: new located - " + e.DeviceOrientation); + Log.Fatal("TCT", "[TestCase][DeviceOrientationCHanged_Event_Test][NUIApplication] Pass"); + } + + private void LowMemory_Event_Test(object sender, LowMemoryEventArgs e) + { + /* + * SCENARIO: + * Launch app + * -> If log show "NUIApplication::LowMemory_Event_Test()" -> PASS + */ + Log.Fatal("TCT", "NUIApplication::LowMemory_Event_Test"); + if (e.LowMemoryStatus == LowMemoryStatus.None) + { + Log.Fatal("TCT", "NUIApplication::LowMemory_Event_Test: LowMemoryStatus.None"); + } + else if (e.LowMemoryStatus == LowMemoryStatus.Normal) + { + Log.Fatal("TCT", "NUIApplication::LowMemory_Event_Test: LowMemoryStatus.Normal"); + } + else if (e.LowMemoryStatus == LowMemoryStatus.SoftWarning) + { + Log.Fatal("TCT", "NUIApplication::LowMemory_Event_Test: LowMemoryStatus.SoftWarning"); + } + else if (e.LowMemoryStatus == LowMemoryStatus.HardWarning) + { + Log.Fatal("TCT", "NUIApplication::LowMemory_Event_Test: LowMemoryStatus.HardWarning"); + } + Log.Fatal("TCT", "[TestCase][LowMemory_Event_Test][NUIApplication] Pass"); + } + + private void LowBattery_Event_Test(object sender, LowBatteryEventArgs e) + { + Log.Fatal("TCT", "NUIApplication::LowBattery_Event_Test"); + + if (e.LowBatteryStatus == LowBatteryStatus.CriticalLow) + { + Log.Fatal("TCT", "NUIApplication::LowBattery_Event_Test: LowMemoryStatus.CriticalLow"); + } + Log.Fatal("TCT", "[TestCase][LowBattery_Event_Test][NUIApplication] Pass"); + } + + private void AppControlReceived_Event_Test(object sender, AppControlReceivedEventArgs e) + { + /* + * SCENARIO: + * Launch app + * -> If log show "NUIApplication::AppControlReceived_Event_Test()" -> PASS + */ + Log.Fatal("TCT", "NUIApplication::AppControlReceived_Event_Test"); + Log.Fatal("TCT", "[TestCase][AppControlReceived_Event_Test][NUIApplication] Pass"); + } + + private void Created_Event_Test(object sender, EventArgs e) + { + /* + * SCENARIO: + * Launch app + * -> If log show "NUIApplication::Created_Event_Test()" -> PASS + */ + Log.Fatal("TCT", "NUIApplication::Created_Event_Test"); + Log.Fatal("TCT", "[TestCase][Created_Event_Test][NUIApplication] Pass"); + } + public void Paused_Event_Test(object sender, EventArgs e) + { + /* + * PRECONDITION + * 1. Open NUIApplication app. + * 2. Open other app. + */ + Log.Fatal("TCT", "[TestCase][Paused_Event_Test][NUIApplication] Pass"); + } + public void Resumed_Event_Test(object sender, EventArgs e) + { + /* + * PRECONDITION + * 1. Open NUIApplication app. + * 2. Open other app. + * 3. Long press HOME button and tap to NUIApplicaton shortcut. + */ + Log.Fatal("TCT", "NUIApplication Resumed event occur!"); + Log.Fatal("TCT", "[TestCase][Resumed_Event_Test][NUIApplication] Pass"); + } + + public override void Exit() + { + Log.Fatal("TCT", "[TestCase][Exit][NUIApplication] Pass"); + base.Exit(); + } + void ShowPropertiesInfo() + { + if (base.ApplicationInfo != null) + { + Log.Fatal("TCT", "[Info] ApplicationInfo is not null"); + Log.Fatal("TCT", "[Info] ApplicationInfo.ApplicationId = " + base.ApplicationInfo.ApplicationId); + Log.Fatal("TCT", "[Info] ApplicationInfo.ApplicationType = " + base.ApplicationInfo.ApplicationType); + Log.Fatal("TCT", "[Info] ApplicationInfo.ExecutablePath = " + base.ApplicationInfo.ExecutablePath); + Log.Fatal("TCT", "[Info] ApplicationInfo.ExternalSharedDataPath = " + base.ApplicationInfo.ExternalSharedDataPath); + Log.Fatal("TCT", "[Info] ApplicationInfo.IconPath = " + base.ApplicationInfo.IconPath); + Log.Fatal("TCT", "[Info] ApplicationInfo.IsNoDisplay = " + base.ApplicationInfo.IsNoDisplay); + Log.Fatal("TCT", "[Info] ApplicationInfo.IsOnBoot = " + base.ApplicationInfo.IsOnBoot); + Log.Fatal("TCT", "[Info] ApplicationInfo.IsPreload = " + base.ApplicationInfo.IsPreload); + Log.Fatal("TCT", "[Info] ApplicationInfo.Label = " + base.ApplicationInfo.Label); + Log.Fatal("TCT", "[Info] ApplicationInfo.Metadata Count = " + base.ApplicationInfo.Metadata.Count); + foreach (var item in base.ApplicationInfo.Metadata) + { + Log.Fatal("TCT", "[Info] ApplicationInfo.Metadata, Key: " + item.Key + " Value: " + item.Value); + } + Log.Fatal("TCT", "[Info] ApplicationInfo.PackageId = " + base.ApplicationInfo.PackageId); + Log.Fatal("TCT", "[Info] ApplicationInfo.SharedDataPath = " + base.ApplicationInfo.SharedDataPath); + Log.Fatal("TCT", "[Info] ApplicationInfo.SharedResourcePath = " + base.ApplicationInfo.SharedResourcePath); + Log.Fatal("TCT", "[Info] ApplicationInfo.SharedTrustedPath = " + base.ApplicationInfo.SharedTrustedPath); + } + if (base.DirectoryInfo != null) + { + Log.Fatal("TCT", "[Info] DirectoryInfo is not null"); + Log.Fatal("TCT", "[Info] DirectoryInfo.Cache = " + base.DirectoryInfo.Cache); + Log.Fatal("TCT", "[Info] DirectoryInfo.Data = " + base.DirectoryInfo.Data); + Log.Fatal("TCT", "[Info] DirectoryInfo.ExpansionPackageResource = " + base.DirectoryInfo.ExpansionPackageResource); + Log.Fatal("TCT", "[Info] DirectoryInfo.ExternalCache = " + base.DirectoryInfo.ExternalCache); + Log.Fatal("TCT", "[Info] DirectoryInfo.ExternalData = " + base.DirectoryInfo.ExternalData); + Log.Fatal("TCT", "[Info] DirectoryInfo.ExternalSharedData = " + base.DirectoryInfo.ExternalSharedData); + Log.Fatal("TCT", "[Info] DirectoryInfo.Resource = " + base.DirectoryInfo.Resource); + Log.Fatal("TCT", "[Info] DirectoryInfo.SharedData = " + base.DirectoryInfo.SharedData); + Log.Fatal("TCT", "[Info] DirectoryInfo.SharedResource = " + base.DirectoryInfo.SharedResource); + Log.Fatal("TCT", "[Info] DirectoryInfo.SharedTrusted = " + base.DirectoryInfo.SharedTrusted); + } + + Log.Fatal("TCT", "[Info] Current == this : " + (Current == this)); + Log.Fatal("TCT", "[Info] Current.ApplicationInfo.ApplicationId = " + Current.ApplicationInfo.ApplicationId); + } + + } +} diff --git a/tct-suite-vs/Resource/Tizen.NUI.Manual.Tests/code/Tizen.NUI.NUIApplications.Manual.Tests/NUIApplicationsManualTests/src/Program.cs b/tct-suite-vs/Resource/Tizen.NUI.Manual.Tests/code/Tizen.NUI.NUIApplications.Manual.Tests/NUIApplicationsManualTests/src/Program.cs new file mode 100755 index 0000000..2301107 --- /dev/null +++ b/tct-suite-vs/Resource/Tizen.NUI.Manual.Tests/code/Tizen.NUI.NUIApplications.Manual.Tests/NUIApplicationsManualTests/src/Program.cs @@ -0,0 +1,34 @@ +/* + * Copyright (c) 2017 Samsung Electronics Co., Ltd. + * + * 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 Tizen; + +namespace NUIApplicationsManualTests +{ + public class Program + { + /// + /// The enter point of ImageSample. + /// + static void Main(string[] args) + { + Log.Info("Tag", "========== Hello, ImageSample =========="); + new NUIApplicationsManualTests().Run(args); + } + } +} diff --git a/tct-suite-vs/Resource/Tizen.NUI.Manual.Tests/code/Tizen.NUI.NUIApplications.Manual.Tests/NUIApplicationsManualTests/tizen-manifest.xml b/tct-suite-vs/Resource/Tizen.NUI.Manual.Tests/code/Tizen.NUI.NUIApplications.Manual.Tests/NUIApplicationsManualTests/tizen-manifest.xml new file mode 100755 index 0000000..2eeff1e --- /dev/null +++ b/tct-suite-vs/Resource/Tizen.NUI.Manual.Tests/code/Tizen.NUI.NUIApplications.Manual.Tests/NUIApplicationsManualTests/tizen-manifest.xml @@ -0,0 +1,11 @@ + + + + + NUIApplicationsManualTests.png + + + + + true + diff --git a/tct-suite-vs/Resource/Tizen.NUI.Manual.Tests/org.tizen.example.NUIApplicationsManualTests-1.0.0.tpk b/tct-suite-vs/Resource/Tizen.NUI.Manual.Tests/org.tizen.example.NUIApplicationsManualTests-1.0.0.tpk new file mode 100755 index 0000000..a820eb5 Binary files /dev/null and b/tct-suite-vs/Resource/Tizen.NUI.Manual.Tests/org.tizen.example.NUIApplicationsManualTests-1.0.0.tpk differ diff --git a/tct-suite-vs/Tizen.NUI.Manual.Tests/Tizen.NUI.Manual.Tests.sln b/tct-suite-vs/Tizen.NUI.Manual.Tests/Tizen.NUI.Manual.Tests.sln index 6d4ad7b..cffec67 100755 --- a/tct-suite-vs/Tizen.NUI.Manual.Tests/Tizen.NUI.Manual.Tests.sln +++ b/tct-suite-vs/Tizen.NUI.Manual.Tests/Tizen.NUI.Manual.Tests.sln @@ -1,13 +1,12 @@ - Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 VisualStudioVersion = 15.0.26124.0 MinimumVisualStudioVersion = 15.0.26124.0 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tizen.NUI.Manual.Tests", "Tizen.NUI.Manual.Tests.csproj", "{66D8A33C-59A0-4F95-86BB-D4B98DB350B8}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tizen.NUI.Manual.Tests", "Tizen.NUI.Manual.Tests.csproj", "{66D8A33C-59A0-4F95-86BB-D4B98DB350B8}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.framework", "..\nunit.framework\nunit.framework.csproj", "{8537EA70-6272-4CCD-BCD4-EA8678519A42}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "nunit.framework", "..\nunit.framework\nunit.framework.csproj", "{8537EA70-6272-4CCD-BCD4-EA8678519A42}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite", "..\nunitlite\nunitlite.csproj", "{F125594F-E09F-4444-8DD7-ACAE72830C55}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "nunitlite", "..\nunitlite\nunitlite.csproj", "{F125594F-E09F-4444-8DD7-ACAE72830C55}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -18,45 +17,48 @@ Global Release|x64 = Release|x64 Release|x86 = Release|x86 EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {66D8A33C-59A0-4F95-86BB-D4B98DB350B8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {66D8A33C-59A0-4F95-86BB-D4B98DB350B8}.Debug|Any CPU.Build.0 = Debug|Any CPU - {66D8A33C-59A0-4F95-86BB-D4B98DB350B8}.Debug|x64.ActiveCfg = Debug|x64 - {66D8A33C-59A0-4F95-86BB-D4B98DB350B8}.Debug|x64.Build.0 = Debug|x64 - {66D8A33C-59A0-4F95-86BB-D4B98DB350B8}.Debug|x86.ActiveCfg = Debug|x86 - {66D8A33C-59A0-4F95-86BB-D4B98DB350B8}.Debug|x86.Build.0 = Debug|x86 + {66D8A33C-59A0-4F95-86BB-D4B98DB350B8}.Debug|x64.ActiveCfg = Debug|Any CPU + {66D8A33C-59A0-4F95-86BB-D4B98DB350B8}.Debug|x64.Build.0 = Debug|Any CPU + {66D8A33C-59A0-4F95-86BB-D4B98DB350B8}.Debug|x86.ActiveCfg = Debug|Any CPU + {66D8A33C-59A0-4F95-86BB-D4B98DB350B8}.Debug|x86.Build.0 = Debug|Any CPU {66D8A33C-59A0-4F95-86BB-D4B98DB350B8}.Release|Any CPU.ActiveCfg = Release|Any CPU {66D8A33C-59A0-4F95-86BB-D4B98DB350B8}.Release|Any CPU.Build.0 = Release|Any CPU - {66D8A33C-59A0-4F95-86BB-D4B98DB350B8}.Release|x64.ActiveCfg = Release|x64 - {66D8A33C-59A0-4F95-86BB-D4B98DB350B8}.Release|x64.Build.0 = Release|x64 - {66D8A33C-59A0-4F95-86BB-D4B98DB350B8}.Release|x86.ActiveCfg = Release|x86 - {66D8A33C-59A0-4F95-86BB-D4B98DB350B8}.Release|x86.Build.0 = Release|x86 + {66D8A33C-59A0-4F95-86BB-D4B98DB350B8}.Release|x64.ActiveCfg = Release|Any CPU + {66D8A33C-59A0-4F95-86BB-D4B98DB350B8}.Release|x64.Build.0 = Release|Any CPU + {66D8A33C-59A0-4F95-86BB-D4B98DB350B8}.Release|x86.ActiveCfg = Release|Any CPU + {66D8A33C-59A0-4F95-86BB-D4B98DB350B8}.Release|x86.Build.0 = Release|Any CPU {8537EA70-6272-4CCD-BCD4-EA8678519A42}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {8537EA70-6272-4CCD-BCD4-EA8678519A42}.Debug|Any CPU.Build.0 = Debug|Any CPU - {8537EA70-6272-4CCD-BCD4-EA8678519A42}.Debug|x64.ActiveCfg = Debug|x64 - {8537EA70-6272-4CCD-BCD4-EA8678519A42}.Debug|x64.Build.0 = Debug|x64 - {8537EA70-6272-4CCD-BCD4-EA8678519A42}.Debug|x86.ActiveCfg = Debug|x86 - {8537EA70-6272-4CCD-BCD4-EA8678519A42}.Debug|x86.Build.0 = Debug|x86 + {8537EA70-6272-4CCD-BCD4-EA8678519A42}.Debug|x64.ActiveCfg = Debug|Any CPU + {8537EA70-6272-4CCD-BCD4-EA8678519A42}.Debug|x64.Build.0 = Debug|Any CPU + {8537EA70-6272-4CCD-BCD4-EA8678519A42}.Debug|x86.ActiveCfg = Debug|Any CPU + {8537EA70-6272-4CCD-BCD4-EA8678519A42}.Debug|x86.Build.0 = Debug|Any CPU {8537EA70-6272-4CCD-BCD4-EA8678519A42}.Release|Any CPU.ActiveCfg = Release|Any CPU {8537EA70-6272-4CCD-BCD4-EA8678519A42}.Release|Any CPU.Build.0 = Release|Any CPU - {8537EA70-6272-4CCD-BCD4-EA8678519A42}.Release|x64.ActiveCfg = Release|x64 - {8537EA70-6272-4CCD-BCD4-EA8678519A42}.Release|x64.Build.0 = Release|x64 - {8537EA70-6272-4CCD-BCD4-EA8678519A42}.Release|x86.ActiveCfg = Release|x86 - {8537EA70-6272-4CCD-BCD4-EA8678519A42}.Release|x86.Build.0 = Release|x86 + {8537EA70-6272-4CCD-BCD4-EA8678519A42}.Release|x64.ActiveCfg = Release|Any CPU + {8537EA70-6272-4CCD-BCD4-EA8678519A42}.Release|x64.Build.0 = Release|Any CPU + {8537EA70-6272-4CCD-BCD4-EA8678519A42}.Release|x86.ActiveCfg = Release|Any CPU + {8537EA70-6272-4CCD-BCD4-EA8678519A42}.Release|x86.Build.0 = Release|Any CPU {F125594F-E09F-4444-8DD7-ACAE72830C55}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {F125594F-E09F-4444-8DD7-ACAE72830C55}.Debug|Any CPU.Build.0 = Debug|Any CPU - {F125594F-E09F-4444-8DD7-ACAE72830C55}.Debug|x64.ActiveCfg = Debug|x64 - {F125594F-E09F-4444-8DD7-ACAE72830C55}.Debug|x64.Build.0 = Debug|x64 - {F125594F-E09F-4444-8DD7-ACAE72830C55}.Debug|x86.ActiveCfg = Debug|x86 - {F125594F-E09F-4444-8DD7-ACAE72830C55}.Debug|x86.Build.0 = Debug|x86 + {F125594F-E09F-4444-8DD7-ACAE72830C55}.Debug|x64.ActiveCfg = Debug|Any CPU + {F125594F-E09F-4444-8DD7-ACAE72830C55}.Debug|x64.Build.0 = Debug|Any CPU + {F125594F-E09F-4444-8DD7-ACAE72830C55}.Debug|x86.ActiveCfg = Debug|Any CPU + {F125594F-E09F-4444-8DD7-ACAE72830C55}.Debug|x86.Build.0 = Debug|Any CPU {F125594F-E09F-4444-8DD7-ACAE72830C55}.Release|Any CPU.ActiveCfg = Release|Any CPU {F125594F-E09F-4444-8DD7-ACAE72830C55}.Release|Any CPU.Build.0 = Release|Any CPU - {F125594F-E09F-4444-8DD7-ACAE72830C55}.Release|x64.ActiveCfg = Release|x64 - {F125594F-E09F-4444-8DD7-ACAE72830C55}.Release|x64.Build.0 = Release|x64 - {F125594F-E09F-4444-8DD7-ACAE72830C55}.Release|x86.ActiveCfg = Release|x86 - {F125594F-E09F-4444-8DD7-ACAE72830C55}.Release|x86.Build.0 = Release|x86 + {F125594F-E09F-4444-8DD7-ACAE72830C55}.Release|x64.ActiveCfg = Release|Any CPU + {F125594F-E09F-4444-8DD7-ACAE72830C55}.Release|x64.Build.0 = Release|Any CPU + {F125594F-E09F-4444-8DD7-ACAE72830C55}.Release|x86.ActiveCfg = Release|Any CPU + {F125594F-E09F-4444-8DD7-ACAE72830C55}.Release|x86.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {70518B32-7051-446F-9251-03D863BBD75E} EndGlobalSection EndGlobal diff --git a/tct-suite-vs/Tizen.NUI.Manual.Tests/testcase/TSNUIApplication.cs b/tct-suite-vs/Tizen.NUI.Manual.Tests/testcase/TSNUIApplication.cs new file mode 100755 index 0000000..97254c5 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Manual.Tests/testcase/TSNUIApplication.cs @@ -0,0 +1,390 @@ +/* + * Copyright (c) 2017 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 System.Threading.Tasks; +using NUnit.Framework; +using NUnit.Framework.TUnit; +using Tizen.Applications; +using Tizen.NUI; +using Tizen.NUI.BaseComponents; +using Tizen.NUI.UIComponents; + +namespace Tizen.NUI.Tests +{ + [TestFixture] + [Description("NUIApplication init test")] + public class NUIApplicationTests + { + private bool _isMobile = false; + private bool _isWearable = false; + private bool _isEmulator = false; + private ManualTestNUI _testPage; + + [SetUp] + public void Init() + { + Log.Info("TCT", "Preconditions for each TEST"); + _isMobile = ManualTest.IsMobile(); + _isWearable = ManualTest.IsWearable(); + _isEmulator = ManualTest.IsEmulator(); + + AppControl myAppControl = new AppControl(); + myAppControl.Operation = AppControlOperations.Default; + myAppControl.ApplicationId = "org.tizen.example.NUIApplicationManualTest"; + AppControl.SendLaunchRequest(myAppControl); + + _testPage = ManualTestNUI.GetInstance(); + } + + [TearDown] + public void Destroy() + { + Log.Info("TCT", "Postconditions for each TEST"); + } + + [Test] + [Category("P1")] + [Description("MANUAL TEST : when launch NUIApplication, Run() method should be called")] + [Property("SPEC", "Tizen.NUI.NUIApplication.Run M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MR")] + [Property("AUTHOR", "Feng Jin, feng16.jin@samsung.com")] + [Precondition(1, "Open terminal to view logs.")] + [Precondition(2, "Enter command \"sdb dlog -c\" to clear log")] + [Precondition(3, "Enter command \"sdb dlog | grep TestCase\" to terminal")] + [Step(1, "Click run TC")] + [Step(2, "Check if log show \"[TestCase][Run][NUIApplication] Pass\".")] + [Postcondition(1, "Close the terminal")] + public async Task Run_MANUAL_TEST() + { + /* TEST CODE */ + await ManualTest.WaitForConfirm(); + } + + private void Confirm() + { + ManualTest.Confirm(); + } + + [Test] + [Category("P1")] + [Description("MANUAL TEST : OnLowMemory() should be called normally after launch app")] + [Property("SPEC", "Tizen.NUI.NUIApplication.OnLowMemory M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MR")] + [Property("AUTHOR", "Feng Jin, feng16.jin@samsung.com")] + [Precondition(1, "This test can be tested only in mobile emulator now.")] + [Precondition(2, "Open terminal to view logs.")] + [Precondition(3, "Enter command \"sdb dlog -c\" to clear log")] + [Precondition(4, "Enter command \"sdb dlog | grep TestCase\" to terminal")] + [Precondition(5, "Right click on the mobile emulator and Click ControlPanel")] + [Step(1, "Click run TC")] + [Step(2, "Find and click Memory button in Emulator Control Panel")] + [Step(3, "Select Soft Warning button")] + [Step(4, "Check if log show \"[TestCase][OnLowMemory][NUIApplication] Pass\".")] + [Step(5, "Select Hard Warning button")] + [Step(6, "Check if log show \"[TestCase][OnLowMemory][NUIApplication] Pass\".")] + [Postcondition(1, "Close the terminal")] + public async Task OnLowMemory_MANUAL_TEST() + { + if (!_isMobile || !_isEmulator) + { + Confirm(); + return; + } + else + { + /* TEST CODE */ + await ManualTest.WaitForConfirm(); + } + } + + [Test] + [Category("P1")] + [Description("MANUAL TEST : OnLowBattery() should be called normally after launch app")] + [Property("SPEC", "Tizen.NUI.NUIApplication.OnLowBattery M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MR")] + [Property("AUTHOR", "Feng Jin, feng16.jin@samsung.com")] + [Precondition(1, "This test can be tested only in mobile emulator now.")] + [Precondition(2, "Open terminal to view logs.")] + [Precondition(3, "Enter command \"sdb dlog -c\" to clear log")] + [Precondition(4, "Enter command \"sdb dlog | grep TestCase\" to terminal")] + [Precondition(5, "Right click on the mobile emulator and Click ControlPanel")] + [Step(1, "Click run TC")] + [Step(2, "Find and click Battery button in Emulator Control Panel")] + [Step(3, "Click level bar to make it under 5%")] + [Step(4, "Check if log show \"[TestCase][OnLowBattery][NUIApplication] Pass\".")] + [Postcondition(1, "Close the terminal")] + public async Task OnLowBattery_MANUAL_TEST() + { + if (!_isMobile || !_isEmulator) + { + Confirm(); + return; + } + else + { + /* TEST CODE */ + await ManualTest.WaitForConfirm(); + } + } + + [Test] + [Category("P1")] + [Description("MANUAL TEST : OnCreate() should be called after launch app")] + [Property("SPEC", "Tizen.NUI.NUIApplication.OnCreate M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MR")] + [Property("AUTHOR", "Feng Jin, feng16.jin@samsung.com")] + [Precondition(1, "Open terminal to view logs.")] + [Precondition(2, "Enter command \"sdb dlog -c\" to clear log")] + [Precondition(3, "Enter command \"sdb dlog | grep TestCase\" to terminal")] + [Step(1, "Click run TC")] + [Step(2, "Check if log show \"[TestCase][OnCreate][NUIApplication] Pass\".")] + [Postcondition(1, "Close the terminal")] + public async Task OnCreate_MANUAL_TEST() + { + /* TEST CODE */ + await ManualTest.WaitForConfirm(); + } + + [Test] + [Category("P1")] + [Description("MANUAL TEST : OnPreCreate() should be called after launch app")] + [Property("SPEC", "Tizen.NUI.NUIApplication.OnPreCreate M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MR")] + [Property("AUTHOR", "Feng Jin, feng16.jin@samsung.com")] + [Precondition(1, "Open terminal to view logs.")] + [Precondition(2, "Enter command \"sdb dlog -c\" to clear log")] + [Precondition(3, "Enter command \"sdb dlog | grep TestCase\" to terminal")] + [Step(1, "Click run TC")] + [Step(2, "Check if log show \"[TestCase][OnPreCreate][NUIApplication] Pass\".")] + [Postcondition(1, "Close the terminal")] + public async Task OnPreCreate_MANUAL_TEST() + { + /* TEST CODE */ + await ManualTest.WaitForConfirm(); + } + + [Test] + [Category("P1")] + [Description("MANUAL TEST : OnAppControlReceived() should be called after launch app")] + [Property("SPEC", "Tizen.NUI.NUIApplication.OnAppControlReceived M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MR")] + [Property("AUTHOR", "Feng Jin, feng16.jin@samsung.com")] + [Precondition(1, "Open terminal to view logs.")] + [Precondition(2, "Enter command \"sdb dlog -c\" to clear log")] + [Precondition(3, "Enter command \"sdb dlog | grep TestCase\" to terminal")] + [Step(1, "Click run TC")] + [Step(2, "Check if log show \"[TestCase][OnAppControlReceived][NUIApplication] Pass\".")] + [Postcondition(1, "Close the terminal")] + public async Task OnAppControlReceived_MANUAL_TEST() + { + /* TEST CODE */ + await ManualTest.WaitForConfirm(); + } + + [Test] + [Category("P1")] + [Description("MANUAL TEST : AddIdle() should be called")] + [Property("SPEC", "Tizen.NUI.NUIApplication.AddIdle M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MR")] + [Property("AUTHOR", "Feng Jin, feng16.jin@samsung.com")] + [Precondition(1, "Open terminal to view logs.")] + [Precondition(2, "Enter command \"sdb dlog -c\" to clear log")] + [Precondition(3, "Enter command \"sdb dlog | grep TestCase\" to terminal")] + [Step(1, "Click run TC")] + [Step(1, "Click AddIdle Button")] + [Step(2, "Check if log show \"[TestCase][AddIdle][NUIApplication] Pass\".")] + [Postcondition(1, "Close the terminal")] + public async Task AddIdle_MANUAL_TEST() + { + /* TEST CODE */ + await ManualTest.WaitForConfirm(); + } + + [Test] + [Category("P1")] + [Description("MANUAL TEST : OnLocaleChanged() should be called after change Language of device")] + [Property("SPEC", "Tizen.NUI.NUIApplication.OnLocaleChanged M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MR")] + [Property("AUTHOR", "Feng Jin, feng16.jin@samsung.com")] + [Precondition(1, "Open terminal to view logs.")] + [Precondition(2, "Enter command \"sdb dlog -c\" to clear log")] + [Precondition(3, "Enter command \"sdb dlog | grep TestCase\" to terminal")] + [Step(1, "Click run TC")] + [Step(2, "[Common] if you cannot change a language in a setting app, this test can not be tested. Please click \"Pass\" button.")] + [Step(3, "Press Home hardkey -> Setting app -> change language -> return to app test -> wait in 20s")] + [Step(4, "Check if log show \"[TestCase][OnLocaleChanged][NUIApplication] Pass\".")] + [Postcondition(1, "Close the terminal")] + public async Task OnLocaleChanged_MANUAL_TEST() + { + /* TEST CODE */ + await ManualTest.WaitForConfirm(); + } + + [Test] + [Category("P1")] + [Description("MANUAL TEST : OnRegionFormatChanged() should be called after change Language of device")] + [Property("SPEC", "Tizen.NUI.NUIApplication.OnRegionFormatChanged M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MR")] + [Property("AUTHOR", "Feng Jin, feng16.jin@samsung.com")] + [Precondition(1, "Open terminal to view logs.")] + [Precondition(2, "Enter command \"sdb dlog -c\" to clear log")] + [Precondition(3, "Enter command \"sdb dlog | grep TestCase\" to terminal")] + [Step(1, "Click run TC")] + [Step(2, "[mobile] Press Home hardkey -> Setting app -> change language -> return to app test -> wait in 20s")] + [Step(3, "[TV profile] Press Home key -> Settings -> System -> Location -> change location -> return to app test -> wait in 20s")] + [Step(4, "[TV profile] if there is no \"Location\" menu, this test can not be tested. Please click \"Pass\" button if \"Location\" menu doesn't exist.")] + [Step(5, "Check if log show \"[TestCase][OnRegionFormatChanged][NUIApplication] Pass\".")] + [Postcondition(1, "Close the terminal")] + public async Task OnRegionFormatChanged_MANUAL_TEST() + { + /* TEST CODE */ + await ManualTest.WaitForConfirm(); + } + + [Test] + [Category("P1")] + [Description("MANUAL TEST : Exit() method should be excuted normally")] + [Property("SPEC", "Tizen.NUI.NUIApplication.Exit M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MR")] + [Property("AUTHOR", "Feng Jin, feng16.jin@samsung.com")] + [Precondition(1, "Open terminal to view logs.")] + [Precondition(2, "Enter command \"sdb dlog -c\" to clear log")] + [Precondition(3, "Enter command \"sdb dlog | grep TestCase\" to terminal")] + [Step(1, "Click run TC")] + [Step(2, "Click Exit button")] + [Step(3, "Check if log show \"[TestCase][Exit][NUIApplication] Pass\".")] + [Postcondition(1, "Close the terminal")] + public async Task Exit_MANUAL_TEST() + { + /* TEST CODE */ + await ManualTest.WaitForConfirm(); + } + + [Test] + [Category("P1")] + [Description("MANUAL TEST : OnTerminate() should be called after call Exit()")] + [Property("SPEC", "Tizen.NUI.NUIApplication.OnTerminate M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MR")] + [Property("AUTHOR", "Feng Jin, feng16.jin@samsung.com")] + [Precondition(1, "Open terminal to view logs.")] + [Precondition(2, "Enter command \"sdb dlog -c\" to clear log")] + [Precondition(3, "Enter command \"sdb dlog | grep TestCase\" to terminal")] + [Step(1, "Click run TC")] + [Step(2, "Click Exit button")] + [Step(3, "Check if log show \"[TestCase][OnTerminate][NUIApplication] Pass\".")] + [Postcondition(1, "Close the terminal")] + public async Task OnTerminate_MANUAL_TEST() + { + /* TEST CODE */ + await ManualTest.WaitForConfirm(); + } + + [Test] + [Category("P1")] + [Description("MANUAL TEST : OnPause() should be excuted normally")] + [Property("SPEC", "Tizen.NUI.NUIApplication.OnPause M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MR")] + [Property("AUTHOR", "Feng Jin, feng16.jin@samsung.com")] + [Precondition(1, "Open terminal to view logs.")] + [Precondition(2, "Enter command \"sdb dlog -c\" to clear log")] + [Precondition(3, "Enter command \"sdb dlog | grep TestCase\" to terminal")] + [Step(1, "Click run TC")] + [Step(2, "Click Pause button")] + [Step(3, "Check if log show \"[TestCase][OnPause][NUIApplication] Pass\".")] + [Postcondition(1, "Close the terminal")] + public async Task OnPause_MANUAL_TEST() + { + /* TEST CODE */ + await ManualTest.WaitForConfirm(); + } + + [Test] + [Category("P1")] + [Description("MANUAL TEST : Paused Event should be triggered")] + [Property("SPEC", "Tizen.NUI.NUIApplication.Paused E")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "EVL")] + [Property("AUTHOR", "Feng Jin, feng16.jin@samsung.com")] + [Precondition(1, "Open terminal to view logs.")] + [Precondition(2, "Enter command \"sdb dlog -c\" to clear log")] + [Precondition(3, "Enter command \"sdb dlog | grep TestCase\" to terminal")] + [Step(1, "Click run TC")] + [Step(2, "Click Pause button")] + [Step(3, "Check if log show \"[TestCase][Paused_Event_Test][NUIApplication] Pass\".")] + [Postcondition(1, "Close the terminal")] + public async Task Paused_EVENT_TEST() + { + /* TEST CODE */ + await ManualTest.WaitForConfirm(); + } + + [Test] + [Category("P1")] + [Description("MANUAL TEST : OnResume() should be excuted normally")] + [Property("SPEC", "Tizen.NUI.NUIApplication.OnResume M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MR")] + [Property("AUTHOR", "Feng Jin, feng16.jin@samsung.com")] + [Precondition(1, "Open terminal to view logs.")] + [Precondition(2, "Enter command \"sdb dlog -c\" to clear log")] + [Precondition(3, "Enter command \"sdb dlog | grep TestCase\" to terminal")] + [Step(1, "Click run TC")] + [Step(2, "Click Pause button")] + [Step(3, "Check if log show \"[TestCase][OnResume][NUIApplication] Pass\".")] + [Postcondition(1, "Close the terminal")] + public async Task OnResume_MANUAL_TEST() + { + /* TEST CODE */ + await ManualTest.WaitForConfirm(); + } + + [Test] + [Category("P1")] + [Description("MANUAL TEST : Resumed Event should be triggered")] + [Property("SPEC", "Tizen.NUI.NUIApplication.Resumed E")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "EVL")] + [Property("AUTHOR", "Feng Jin, feng16.jin@samsung.com")] + [Precondition(1, "Open terminal to view logs.")] + [Precondition(2, "Enter command \"sdb dlog -c\" to clear log")] + [Precondition(3, "Enter command \"sdb dlog | grep TestCase\" to terminal")] + [Step(1, "Click run TC")] + [Step(2, "Click Resume button")] + [Step(3, "Check if log show \"[TestCase][Resumed_Event_Test][NUIApplication] Pass\".")] + [Postcondition(1, "Close the terminal")] + public async Task Resumed_EVENT_TEST() + { + /* TEST CODE */ + await ManualTest.WaitForConfirm(); + } + } +} + + + diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.Designer.cs b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.Designer.cs new file mode 100755 index 0000000..c4b0d40 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.Designer.cs @@ -0,0 +1,90 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Tizen.NUI.Tests.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class Resource { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resource() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Tizen.NUI.Tests.Properties.Resource", typeof(Resource).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Picture. + /// + public static string COM_SID_PICTURE { + get { + return ResourceManager.GetString("COM_SID_PICTURE", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Settings. + /// + public static string COM_SID_SETTINGS { + get { + return ResourceManager.GetString("COM_SID_SETTINGS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Update Now. + /// + public static string COM_UPDATE_NOW { + get { + return ResourceManager.GetString("COM_UPDATE_NOW", resourceCulture); + } + } + } +} diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.Irc-IQ.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.Irc-IQ.resx new file mode 100755 index 0000000..8521870 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.Irc-IQ.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.af-ZA.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.af-ZA.resx new file mode 100755 index 0000000..d43594a --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.af-ZA.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.am-ET.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.am-ET.resx new file mode 100755 index 0000000..876bf61 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.am-ET.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ar-AE.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ar-AE.resx new file mode 100755 index 0000000..b69fdd4 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ar-AE.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.as-IN.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.as-IN.resx new file mode 100755 index 0000000..3e43b86 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.as-IN.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.az.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.az.resx new file mode 100755 index 0000000..a269cf9 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.az.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.bg-BG.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.bg-BG.resx new file mode 100755 index 0000000..564694b --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.bg-BG.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.bh-IN.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.bh-IN.resx new file mode 100755 index 0000000..737c765 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.bh-IN.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.bn-IN.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.bn-IN.resx new file mode 100755 index 0000000..4592a4f --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.bn-IN.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.bs.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.bs.resx new file mode 100755 index 0000000..5935197 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.bs.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.cs-CZ.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.cs-CZ.resx new file mode 100755 index 0000000..87a3566 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.cs-CZ.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.da-DK.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.da-DK.resx new file mode 100755 index 0000000..8611f41 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.da-DK.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.de-DE.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.de-DE.resx new file mode 100755 index 0000000..4ff4801 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.de-DE.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.el-GR.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.el-GR.resx new file mode 100755 index 0000000..9cb3ffe --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.el-GR.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.en-GB.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.en-GB.resx new file mode 100755 index 0000000..35fa1eb --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.en-GB.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.es-ES.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.es-ES.resx new file mode 100755 index 0000000..70a10c9 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.es-ES.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.es-MX.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.es-MX.resx new file mode 100755 index 0000000..70a10c9 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.es-MX.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.et-EE.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.et-EE.resx new file mode 100755 index 0000000..7786c5f --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.et-EE.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.fa-IR.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.fa-IR.resx new file mode 100755 index 0000000..c8ef9a3 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.fa-IR.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.fi-FI.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.fi-FI.resx new file mode 100755 index 0000000..5963a7e --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.fi-FI.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.fr-CA.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.fr-CA.resx new file mode 100755 index 0000000..ad4edbb --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.fr-CA.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.fr-FR.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.fr-FR.resx new file mode 100755 index 0000000..9fee937 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.fr-FR.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.gu-IN.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.gu-IN.resx new file mode 100755 index 0000000..5d1723d --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.gu-IN.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ha-Latn-NG.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ha-Latn-NG.resx new file mode 100755 index 0000000..27e52e2 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ha-Latn-NG.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.he-IL.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.he-IL.resx new file mode 100755 index 0000000..aad9309 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.he-IL.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.hi-IN.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.hi-IN.resx new file mode 100755 index 0000000..8c40aea --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.hi-IN.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.hr-HR.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.hr-HR.resx new file mode 100755 index 0000000..5935197 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.hr-HR.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.hu-HU.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.hu-HU.resx new file mode 100755 index 0000000..764a108 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.hu-HU.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.hy-AM.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.hy-AM.resx new file mode 100755 index 0000000..62ffcae --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.hy-AM.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.id-ID.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.id-ID.resx new file mode 100755 index 0000000..3029241 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.id-ID.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ig-NG.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ig-NG.resx new file mode 100755 index 0000000..da4cdaa --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ig-NG.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.it-IT.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.it-IT.resx new file mode 100755 index 0000000..2dac7e5 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.it-IT.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ja-JP.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ja-JP.resx new file mode 100755 index 0000000..ea2f87c --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ja-JP.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ka-GE.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ka-GE.resx new file mode 100755 index 0000000..3b035d1 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ka-GE.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.kk-KZ.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.kk-KZ.resx new file mode 100755 index 0000000..0b424b6 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.kk-KZ.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.km-KH.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.km-KH.resx new file mode 100755 index 0000000..1243234 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.km-KH.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.kn-IN.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.kn-IN.resx new file mode 100755 index 0000000..505ec9c --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.kn-IN.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ko-KR.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ko-KR.resx new file mode 100755 index 0000000..c4e0000 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ko-KR.resx @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 지금 업데이트 + + + 설정 + + + 화면 + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.kok-IN.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.kok-IN.resx new file mode 100755 index 0000000..0bb5c03 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.kok-IN.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ks.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ks.resx new file mode 100755 index 0000000..0cbd8e7 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ks.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ku.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ku.resx new file mode 100755 index 0000000..bccb4fc --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ku.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.lt-LT.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.lt-LT.resx new file mode 100755 index 0000000..252deb8 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.lt-LT.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.lv-LV.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.lv-LV.resx new file mode 100755 index 0000000..d32f7a8 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.lv-LV.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.mai-IN.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.mai-IN.resx new file mode 100755 index 0000000..e7f19b7 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.mai-IN.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.mk-MK.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.mk-MK.resx new file mode 100755 index 0000000..aa2f838 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.mk-MK.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ml-IN.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ml-IN.resx new file mode 100755 index 0000000..4bf4174 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ml-IN.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.mn-MN.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.mn-MN.resx new file mode 100755 index 0000000..1597834 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.mn-MN.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.mni-IN.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.mni-IN.resx new file mode 100755 index 0000000..e8e3103 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.mni-IN.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.mr-IN.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.mr-IN.resx new file mode 100755 index 0000000..32cb59d --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.mr-IN.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ms-MY.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ms-MY.resx new file mode 100755 index 0000000..d2a7cf8 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ms-MY.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.my-MM.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.my-MM.resx new file mode 100755 index 0000000..8a19aee --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.my-MM.resx @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ယခု ပြင်ဆင်ပါ + + + သတ်မှတ်ချက်များ + + + ရုပ်ပုံ + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ne-NP.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ne-NP.resx new file mode 100755 index 0000000..c3342f8 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ne-NP.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.nl-NL.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.nl-NL.resx new file mode 100755 index 0000000..5e4c920 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.nl-NL.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.nn-NO.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.nn-NO.resx new file mode 100755 index 0000000..cfe2d4a --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.nn-NO.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.or-IN.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.or-IN.resx new file mode 100755 index 0000000..f0b13f8 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.or-IN.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.pa-IN.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.pa-IN.resx new file mode 100755 index 0000000..1652a62 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.pa-IN.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.pl-PL.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.pl-PL.resx new file mode 100755 index 0000000..643e381 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.pl-PL.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.pt-BR.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.pt-BR.resx new file mode 100755 index 0000000..d3d282b --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.pt-BR.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.pt-PT.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.pt-PT.resx new file mode 100755 index 0000000..20cbf73 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.pt-PT.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.resx new file mode 100755 index 0000000..193aa9e --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.resx @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Picture + + + Settings + + + Update Now + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ro-RO.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ro-RO.resx new file mode 100755 index 0000000..bee3d7d --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ro-RO.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ru-RU.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ru-RU.resx new file mode 100755 index 0000000..1350aa7 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ru-RU.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.sa-IN.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.sa-IN.resx new file mode 100755 index 0000000..08ac4ad --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.sa-IN.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.sat-IN.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.sat-IN.resx new file mode 100755 index 0000000..697dd78 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.sat-IN.resx @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ᱱᱤᱛ ᱦᱟᱹᱞᱤ ᱨᱟᱠᱟᱵ + + + ᱥᱟᱡᱟᱣ ᱠᱚ + + + ᱯᱷᱚᱴᱽ + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.sd-Deva-IN.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.sd-Deva-IN.resx new file mode 100755 index 0000000..34eed4a --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.sd-Deva-IN.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.sk-SK.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.sk-SK.resx new file mode 100755 index 0000000..0812358 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.sk-SK.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.sl-SI.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.sl-SI.resx new file mode 100755 index 0000000..e650e95 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.sl-SI.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.sq-AL.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.sq-AL.resx new file mode 100755 index 0000000..f942010 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.sq-AL.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.sr.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.sr.resx new file mode 100755 index 0000000..ebb9bbd --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.sr.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.sv-SE.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.sv-SE.resx new file mode 100755 index 0000000..da51749 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.sv-SE.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.sw-KE.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.sw-KE.resx new file mode 100755 index 0000000..e150fff --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.sw-KE.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ta-IN.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ta-IN.resx new file mode 100755 index 0000000..dde1d46 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ta-IN.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.te-IN.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.te-IN.resx new file mode 100755 index 0000000..d464287 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.te-IN.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.th-TH.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.th-TH.resx new file mode 100755 index 0000000..5d1c232 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.th-TH.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.tr-TR.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.tr-TR.resx new file mode 100755 index 0000000..9dee038 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.tr-TR.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.tu-IN.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.tu-IN.resx new file mode 100755 index 0000000..5713cae --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.tu-IN.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.uk-UA.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.uk-UA.resx new file mode 100755 index 0000000..837e868 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.uk-UA.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ur-PK.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ur-PK.resx new file mode 100755 index 0000000..825d032 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.ur-PK.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.uz-Cyrl-UZ.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.uz-Cyrl-UZ.resx new file mode 100755 index 0000000..a909d13 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.uz-Cyrl-UZ.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.vi-VN.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.vi-VN.resx new file mode 100755 index 0000000..b0ff346 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.vi-VN.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.xh-ZA.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.xh-ZA.resx new file mode 100755 index 0000000..09e2d93 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.xh-ZA.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.yo-NG.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.yo-NG.resx new file mode 100755 index 0000000..d28a715 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.yo-NG.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.zh-CN.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.zh-CN.resx new file mode 100755 index 0000000..b9530a2 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.zh-CN.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.zh-HK.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.zh-HK.resx new file mode 100755 index 0000000..f2fd653 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.zh-HK.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.zh-TW.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.zh-TW.resx new file mode 100755 index 0000000..4a3ee3a --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.zh-TW.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.zu-ZA.resx b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.zu-ZA.resx new file mode 100755 index 0000000..5fbb837 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Tests/Properties/Resource.zu-ZA.resx @@ -0,0 +1,25 @@ + + + +text/microsoft-resx + + +2.0 + + +System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + +System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Tests/Tizen.NUI.Tests.csproj b/tct-suite-vs/Tizen.NUI.Tests/Tizen.NUI.Tests.csproj old mode 100644 new mode 100755 index 792bbed..d7b5548 --- a/tct-suite-vs/Tizen.NUI.Tests/Tizen.NUI.Tests.csproj +++ b/tct-suite-vs/Tizen.NUI.Tests/Tizen.NUI.Tests.csproj @@ -23,7 +23,19 @@ - + + + True + True + Resource.resx + + + + + PublicResXFileCodeGenerator + Resource.Designer.cs + + Runtime diff --git a/tct-suite-vs/Tizen.NUI.Tests/Tizen.NUI.Tests.sln b/tct-suite-vs/Tizen.NUI.Tests/Tizen.NUI.Tests.sln index f0ccc04..1545c22 100755 --- a/tct-suite-vs/Tizen.NUI.Tests/Tizen.NUI.Tests.sln +++ b/tct-suite-vs/Tizen.NUI.Tests/Tizen.NUI.Tests.sln @@ -1,13 +1,12 @@ - Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 VisualStudioVersion = 15.0.26124.0 MinimumVisualStudioVersion = 15.0.26124.0 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tizen.NUI.Tests", "Tizen.NUI.Tests.csproj", "{EDA7CE08-63F0-4D30-A8DC-000A32C39119}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tizen.NUI.Tests", "Tizen.NUI.Tests.csproj", "{EDA7CE08-63F0-4D30-A8DC-000A32C39119}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.framework", "..\nunit.framework\nunit.framework.csproj", "{C3B4E786-5F63-4253-ABC5-DB2268FF3278}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "nunit.framework", "..\nunit.framework\nunit.framework.csproj", "{C3B4E786-5F63-4253-ABC5-DB2268FF3278}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite", "..\nunitlite\nunitlite.csproj", "{1EE295D5-6D47-4279-89B2-3095EF49628B}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "nunitlite", "..\nunitlite\nunitlite.csproj", "{1EE295D5-6D47-4279-89B2-3095EF49628B}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -18,45 +17,48 @@ Global Release|x64 = Release|x64 Release|x86 = Release|x86 EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {EDA7CE08-63F0-4D30-A8DC-000A32C39119}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {EDA7CE08-63F0-4D30-A8DC-000A32C39119}.Debug|Any CPU.Build.0 = Debug|Any CPU - {EDA7CE08-63F0-4D30-A8DC-000A32C39119}.Debug|x64.ActiveCfg = Debug|x64 - {EDA7CE08-63F0-4D30-A8DC-000A32C39119}.Debug|x64.Build.0 = Debug|x64 - {EDA7CE08-63F0-4D30-A8DC-000A32C39119}.Debug|x86.ActiveCfg = Debug|x86 - {EDA7CE08-63F0-4D30-A8DC-000A32C39119}.Debug|x86.Build.0 = Debug|x86 + {EDA7CE08-63F0-4D30-A8DC-000A32C39119}.Debug|x64.ActiveCfg = Debug|Any CPU + {EDA7CE08-63F0-4D30-A8DC-000A32C39119}.Debug|x64.Build.0 = Debug|Any CPU + {EDA7CE08-63F0-4D30-A8DC-000A32C39119}.Debug|x86.ActiveCfg = Debug|Any CPU + {EDA7CE08-63F0-4D30-A8DC-000A32C39119}.Debug|x86.Build.0 = Debug|Any CPU {EDA7CE08-63F0-4D30-A8DC-000A32C39119}.Release|Any CPU.ActiveCfg = Release|Any CPU {EDA7CE08-63F0-4D30-A8DC-000A32C39119}.Release|Any CPU.Build.0 = Release|Any CPU - {EDA7CE08-63F0-4D30-A8DC-000A32C39119}.Release|x64.ActiveCfg = Release|x64 - {EDA7CE08-63F0-4D30-A8DC-000A32C39119}.Release|x64.Build.0 = Release|x64 - {EDA7CE08-63F0-4D30-A8DC-000A32C39119}.Release|x86.ActiveCfg = Release|x86 - {EDA7CE08-63F0-4D30-A8DC-000A32C39119}.Release|x86.Build.0 = Release|x86 + {EDA7CE08-63F0-4D30-A8DC-000A32C39119}.Release|x64.ActiveCfg = Release|Any CPU + {EDA7CE08-63F0-4D30-A8DC-000A32C39119}.Release|x64.Build.0 = Release|Any CPU + {EDA7CE08-63F0-4D30-A8DC-000A32C39119}.Release|x86.ActiveCfg = Release|Any CPU + {EDA7CE08-63F0-4D30-A8DC-000A32C39119}.Release|x86.Build.0 = Release|Any CPU {C3B4E786-5F63-4253-ABC5-DB2268FF3278}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {C3B4E786-5F63-4253-ABC5-DB2268FF3278}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C3B4E786-5F63-4253-ABC5-DB2268FF3278}.Debug|x64.ActiveCfg = Debug|x64 - {C3B4E786-5F63-4253-ABC5-DB2268FF3278}.Debug|x64.Build.0 = Debug|x64 - {C3B4E786-5F63-4253-ABC5-DB2268FF3278}.Debug|x86.ActiveCfg = Debug|x86 - {C3B4E786-5F63-4253-ABC5-DB2268FF3278}.Debug|x86.Build.0 = Debug|x86 + {C3B4E786-5F63-4253-ABC5-DB2268FF3278}.Debug|x64.ActiveCfg = Debug|Any CPU + {C3B4E786-5F63-4253-ABC5-DB2268FF3278}.Debug|x64.Build.0 = Debug|Any CPU + {C3B4E786-5F63-4253-ABC5-DB2268FF3278}.Debug|x86.ActiveCfg = Debug|Any CPU + {C3B4E786-5F63-4253-ABC5-DB2268FF3278}.Debug|x86.Build.0 = Debug|Any CPU {C3B4E786-5F63-4253-ABC5-DB2268FF3278}.Release|Any CPU.ActiveCfg = Release|Any CPU {C3B4E786-5F63-4253-ABC5-DB2268FF3278}.Release|Any CPU.Build.0 = Release|Any CPU - {C3B4E786-5F63-4253-ABC5-DB2268FF3278}.Release|x64.ActiveCfg = Release|x64 - {C3B4E786-5F63-4253-ABC5-DB2268FF3278}.Release|x64.Build.0 = Release|x64 - {C3B4E786-5F63-4253-ABC5-DB2268FF3278}.Release|x86.ActiveCfg = Release|x86 - {C3B4E786-5F63-4253-ABC5-DB2268FF3278}.Release|x86.Build.0 = Release|x86 + {C3B4E786-5F63-4253-ABC5-DB2268FF3278}.Release|x64.ActiveCfg = Release|Any CPU + {C3B4E786-5F63-4253-ABC5-DB2268FF3278}.Release|x64.Build.0 = Release|Any CPU + {C3B4E786-5F63-4253-ABC5-DB2268FF3278}.Release|x86.ActiveCfg = Release|Any CPU + {C3B4E786-5F63-4253-ABC5-DB2268FF3278}.Release|x86.Build.0 = Release|Any CPU {1EE295D5-6D47-4279-89B2-3095EF49628B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {1EE295D5-6D47-4279-89B2-3095EF49628B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {1EE295D5-6D47-4279-89B2-3095EF49628B}.Debug|x64.ActiveCfg = Debug|x64 - {1EE295D5-6D47-4279-89B2-3095EF49628B}.Debug|x64.Build.0 = Debug|x64 - {1EE295D5-6D47-4279-89B2-3095EF49628B}.Debug|x86.ActiveCfg = Debug|x86 - {1EE295D5-6D47-4279-89B2-3095EF49628B}.Debug|x86.Build.0 = Debug|x86 + {1EE295D5-6D47-4279-89B2-3095EF49628B}.Debug|x64.ActiveCfg = Debug|Any CPU + {1EE295D5-6D47-4279-89B2-3095EF49628B}.Debug|x64.Build.0 = Debug|Any CPU + {1EE295D5-6D47-4279-89B2-3095EF49628B}.Debug|x86.ActiveCfg = Debug|Any CPU + {1EE295D5-6D47-4279-89B2-3095EF49628B}.Debug|x86.Build.0 = Debug|Any CPU {1EE295D5-6D47-4279-89B2-3095EF49628B}.Release|Any CPU.ActiveCfg = Release|Any CPU {1EE295D5-6D47-4279-89B2-3095EF49628B}.Release|Any CPU.Build.0 = Release|Any CPU - {1EE295D5-6D47-4279-89B2-3095EF49628B}.Release|x64.ActiveCfg = Release|x64 - {1EE295D5-6D47-4279-89B2-3095EF49628B}.Release|x64.Build.0 = Release|x64 - {1EE295D5-6D47-4279-89B2-3095EF49628B}.Release|x86.ActiveCfg = Release|x86 - {1EE295D5-6D47-4279-89B2-3095EF49628B}.Release|x86.Build.0 = Release|x86 + {1EE295D5-6D47-4279-89B2-3095EF49628B}.Release|x64.ActiveCfg = Release|Any CPU + {1EE295D5-6D47-4279-89B2-3095EF49628B}.Release|x64.Build.0 = Release|Any CPU + {1EE295D5-6D47-4279-89B2-3095EF49628B}.Release|x86.ActiveCfg = Release|Any CPU + {1EE295D5-6D47-4279-89B2-3095EF49628B}.Release|x86.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {B322CDDE-6430-4B68-AD4B-17E5761E3C20} EndGlobalSection EndGlobal diff --git a/tct-suite-vs/Tizen.NUI.Tests/testcase/TSNUIApplication.cs b/tct-suite-vs/Tizen.NUI.Tests/testcase/TSNUIApplication.cs index 47039dc..042454c 100755 --- a/tct-suite-vs/Tizen.NUI.Tests/testcase/TSNUIApplication.cs +++ b/tct-suite-vs/Tizen.NUI.Tests/testcase/TSNUIApplication.cs @@ -4,6 +4,14 @@ using System; using Tizen.NUI; using Tizen.NUI.Test; +using Tizen; +using System.Runtime.InteropServices; +using Tizen.NUI.UIComponents; +using Tizen.NUI.BaseComponents; +using Tizen.NUI.Constants; +using Tizen.Applications; +using System.Globalization; + namespace Tizen.NUI.Tests { @@ -94,6 +102,25 @@ namespace Tizen.NUI.Tests } } + [Test] + [Category("P1")] + [Description("Test MultilingualResourceManager. Check whether MultiliguaalResourceManager is readable and writable.")] + [Property("SPEC", "Tizen.NUI.NUIApplication.MultilingualResourceManager A")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "PRW")] + [Property("AUTHOR", "Feng Jin, feng16.jin@samsung.com")] + public void MultilingualResourceManager_CHECK() + { + /* TEST CODE */ + NUIApplication.MultilingualResourceManager = Properties.Resource.ResourceManager; + Assert.IsNotNull(NUIApplication.MultilingualResourceManager, "Should be not null!"); + + string translatableText = null; + translatableText = NUIApplication.MultilingualResourceManager?.GetString("Picture", new CultureInfo("af-ZA")); + Assert.AreEqual("Beeld", translatableText, "Picture should be Beeld in Dutch"); + } + + #if false // currently ACR is not yet proceed. temporarily blocked. //[Test] //[Category("P1")]