From: seungho Date: Thu, 13 Oct 2022 06:41:26 +0000 (+0900) Subject: [NUI][TCSACR-496][Add Model Class] X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4654a3ef4580fd596683f162ca5b4d2c42c87bdc;p=test%2Ftct%2Fcsharp%2Fapi.git [NUI][TCSACR-496][Add Model Class] Change-Id: I09923648ad351f5634bd396fd55f5da486dd32cc Signed-off-by: seungho --- diff --git a/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Program.cs b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Program.cs new file mode 100755 index 0000000..7d1904b --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Program.cs @@ -0,0 +1,134 @@ +/* + * 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 NUnitLite.TUnit; +using Tizen.NUI; +using Tizen.NUI.BaseComponents; +using System.Threading; +using System.Diagnostics; +using System.Threading.Tasks; + +namespace Tizen.NUI.Scene3D.Test +{ + using tlog = Tizen.Log; + public class App : Tizen.NUI.NUIApplication + { + static string tag = "NUITEST"; + + public App() : base() + { + tlog.Debug(tag, "Call App()"); + } + + View root; + static TextLabel mainTitle; + static string title = "NUI Auto TCT \n\n"; + float textSize = 30.0f; + Window window; + Layer layer; + protected override void OnCreate() + { + base.OnCreate(); + + tlog.Debug(tag, "OnCreate() START!"); + + window = NUIApplication.GetDefaultWindow(); + window.BackgroundColor = Color.Green; + + root = new View() + { + Size = new Size(100, 100), + BackgroundColor = Color.White, + PositionUsesPivotPoint = true, + ParentOrigin = ParentOrigin.Center, + PivotPoint = PivotPoint.Center, + }; + + layer = window.GetDefaultLayer(); + layer.Add(root); + + mainTitle = new TextLabel() + { + MultiLine = true, + Text = title + $"Process ID: {Process.GetCurrentProcess().Id} \nThread ID: {Thread.CurrentThread.ManagedThreadId}\n", + PixelSize = textSize, + BackgroundColor = Color.Cyan, + Size2D = new Size2D(window.WindowSize.Width / 2, window.WindowSize.Height / 2), + PositionUsesPivotPoint = true, + ParentOrigin = ParentOrigin.Center, + PivotPoint = PivotPoint.Center, + }; + root.Add(mainTitle); + + tlog.Debug(tag, "OnCreate() END!"); + } + + static public async Task MainTitleChangeBackgroundColor(Color color) + { + if (color != null) + { + mainTitle.BackgroundColor = color; + await Task.Delay(900); + } + } + + static public async Task MainTitleChangeText(string tcTitle) + { + if (tcTitle != null) + { + var processId = Process.GetCurrentProcess().Id; + var threadId = Thread.CurrentThread.ManagedThreadId; + + mainTitle.Text = $"{title}\nProcess ID: {processId}\nThread ID: {threadId}\n TC: {tcTitle}"; + await Task.Delay(20); + + tlog.Debug(tag, $"{title}\nProcess ID: {processId}\nThread ID: {threadId}\n TC: {tcTitle}"); + } + } + + protected override void OnResume() + { + base.OnResume(); + + tlog.Debug(tag, $"OnResume() START!"); + + TRunner t = new TRunner(); + t.LoadTestsuite(); + t.Execute(); + + tlog.Debug(tag, $"OnResume() END!"); + } + + protected override void OnPause() + { + base.OnPause(); + } + + protected override void OnTerminate() + { + base.OnTerminate(); + Exit(); + } + + static void Main(string[] args) + { + tlog.Debug(tag, "NUI RUN!"); + App example = new App(); + example.Run(args); + } + }; +} diff --git a/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.Designer.cs b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.Designer.cs new file mode 100755 index 0000000..f4d5404 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.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.Scene3D.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.Scene3D.Tests/Properties/Resource.Irc-IQ.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.Irc-IQ.resx new file mode 100755 index 0000000..8521870 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.af-ZA.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.af-ZA.resx new file mode 100755 index 0000000..d43594a --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.am-ET.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.am-ET.resx new file mode 100755 index 0000000..876bf61 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.ar-AE.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.ar-AE.resx new file mode 100755 index 0000000..b69fdd4 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.as-IN.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.as-IN.resx new file mode 100755 index 0000000..3e43b86 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.az.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.az.resx new file mode 100755 index 0000000..a269cf9 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.bg-BG.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.bg-BG.resx new file mode 100755 index 0000000..564694b --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.bh-IN.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.bh-IN.resx new file mode 100755 index 0000000..737c765 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.bn-IN.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.bn-IN.resx new file mode 100755 index 0000000..4592a4f --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.bs.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.bs.resx new file mode 100755 index 0000000..5935197 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.cs-CZ.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.cs-CZ.resx new file mode 100755 index 0000000..87a3566 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.da-DK.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.da-DK.resx new file mode 100755 index 0000000..8611f41 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.de-DE.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.de-DE.resx new file mode 100755 index 0000000..4ff4801 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.el-GR.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.el-GR.resx new file mode 100755 index 0000000..9cb3ffe --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.en-GB.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.en-GB.resx new file mode 100755 index 0000000..35fa1eb --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.es-ES.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.es-ES.resx new file mode 100755 index 0000000..70a10c9 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.es-MX.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.es-MX.resx new file mode 100755 index 0000000..70a10c9 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.et-EE.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.et-EE.resx new file mode 100755 index 0000000..7786c5f --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.fa-IR.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.fa-IR.resx new file mode 100755 index 0000000..c8ef9a3 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.fi-FI.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.fi-FI.resx new file mode 100755 index 0000000..5963a7e --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.fr-CA.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.fr-CA.resx new file mode 100755 index 0000000..ad4edbb --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.fr-FR.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.fr-FR.resx new file mode 100755 index 0000000..9fee937 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.gu-IN.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.gu-IN.resx new file mode 100755 index 0000000..5d1723d --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.ha-Latn-NG.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.ha-Latn-NG.resx new file mode 100755 index 0000000..27e52e2 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.he-IL.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.he-IL.resx new file mode 100755 index 0000000..aad9309 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.hi-IN.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.hi-IN.resx new file mode 100755 index 0000000..8c40aea --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.hr-HR.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.hr-HR.resx new file mode 100755 index 0000000..5935197 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.hu-HU.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.hu-HU.resx new file mode 100755 index 0000000..764a108 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.hy-AM.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.hy-AM.resx new file mode 100755 index 0000000..62ffcae --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.id-ID.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.id-ID.resx new file mode 100755 index 0000000..3029241 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.ig-NG.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.ig-NG.resx new file mode 100755 index 0000000..da4cdaa --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.it-IT.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.it-IT.resx new file mode 100755 index 0000000..2dac7e5 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.ja-JP.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.ja-JP.resx new file mode 100755 index 0000000..ea2f87c --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.ka-GE.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.ka-GE.resx new file mode 100755 index 0000000..3b035d1 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.kk-KZ.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.kk-KZ.resx new file mode 100755 index 0000000..0b424b6 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.km-KH.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.km-KH.resx new file mode 100755 index 0000000..1243234 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.kn-IN.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.kn-IN.resx new file mode 100755 index 0000000..505ec9c --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.ko-KR.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.ko-KR.resx new file mode 100755 index 0000000..c4e0000 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.kok-IN.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.kok-IN.resx new file mode 100755 index 0000000..0bb5c03 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.ks.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.ks.resx new file mode 100755 index 0000000..0cbd8e7 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.ku.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.ku.resx new file mode 100755 index 0000000..bccb4fc --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.lt-LT.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.lt-LT.resx new file mode 100755 index 0000000..252deb8 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.lv-LV.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.lv-LV.resx new file mode 100755 index 0000000..d32f7a8 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.mai-IN.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.mai-IN.resx new file mode 100755 index 0000000..e7f19b7 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.mk-MK.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.mk-MK.resx new file mode 100755 index 0000000..aa2f838 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.ml-IN.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.ml-IN.resx new file mode 100755 index 0000000..4bf4174 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.mn-MN.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.mn-MN.resx new file mode 100755 index 0000000..1597834 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.mni-IN.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.mni-IN.resx new file mode 100755 index 0000000..e8e3103 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.mr-IN.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.mr-IN.resx new file mode 100755 index 0000000..32cb59d --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.ms-MY.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.ms-MY.resx new file mode 100755 index 0000000..d2a7cf8 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.my-MM.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.my-MM.resx new file mode 100755 index 0000000..8a19aee --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.ne-NP.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.ne-NP.resx new file mode 100755 index 0000000..c3342f8 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.nl-NL.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.nl-NL.resx new file mode 100755 index 0000000..5e4c920 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.nn-NO.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.nn-NO.resx new file mode 100755 index 0000000..cfe2d4a --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.or-IN.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.or-IN.resx new file mode 100755 index 0000000..f0b13f8 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.pa-IN.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.pa-IN.resx new file mode 100755 index 0000000..1652a62 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.pl-PL.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.pl-PL.resx new file mode 100755 index 0000000..643e381 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.pt-BR.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.pt-BR.resx new file mode 100755 index 0000000..d3d282b --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.pt-PT.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.pt-PT.resx new file mode 100755 index 0000000..20cbf73 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.resx new file mode 100755 index 0000000..193aa9e --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.ro-RO.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.ro-RO.resx new file mode 100755 index 0000000..bee3d7d --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.ru-RU.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.ru-RU.resx new file mode 100755 index 0000000..1350aa7 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.sa-IN.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.sa-IN.resx new file mode 100755 index 0000000..08ac4ad --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.sat-IN.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.sat-IN.resx new file mode 100755 index 0000000..697dd78 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.sd-Deva-IN.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.sd-Deva-IN.resx new file mode 100755 index 0000000..34eed4a --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.sk-SK.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.sk-SK.resx new file mode 100755 index 0000000..0812358 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.sl-SI.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.sl-SI.resx new file mode 100755 index 0000000..e650e95 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.sq-AL.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.sq-AL.resx new file mode 100755 index 0000000..f942010 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.sr.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.sr.resx new file mode 100755 index 0000000..ebb9bbd --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.sv-SE.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.sv-SE.resx new file mode 100755 index 0000000..da51749 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.sw-KE.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.sw-KE.resx new file mode 100755 index 0000000..e150fff --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.ta-IN.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.ta-IN.resx new file mode 100755 index 0000000..dde1d46 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.te-IN.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.te-IN.resx new file mode 100755 index 0000000..d464287 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.th-TH.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.th-TH.resx new file mode 100755 index 0000000..5d1c232 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.tr-TR.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.tr-TR.resx new file mode 100755 index 0000000..9dee038 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.tu-IN.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.tu-IN.resx new file mode 100755 index 0000000..5713cae --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.uk-UA.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.uk-UA.resx new file mode 100755 index 0000000..837e868 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.ur-PK.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.ur-PK.resx new file mode 100755 index 0000000..825d032 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.uz-Cyrl-UZ.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.uz-Cyrl-UZ.resx new file mode 100755 index 0000000..a909d13 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.vi-VN.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.vi-VN.resx new file mode 100755 index 0000000..b0ff346 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.xh-ZA.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.xh-ZA.resx new file mode 100755 index 0000000..09e2d93 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.yo-NG.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.yo-NG.resx new file mode 100755 index 0000000..d28a715 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.zh-CN.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.zh-CN.resx new file mode 100755 index 0000000..b9530a2 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.zh-HK.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.zh-HK.resx new file mode 100755 index 0000000..f2fd653 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.zh-TW.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.zh-TW.resx new file mode 100755 index 0000000..4a3ee3a --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Properties/Resource.zu-ZA.resx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Properties/Resource.zu-ZA.resx new file mode 100755 index 0000000..5fbb837 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.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.Scene3D.Tests/Tizen.NUI.Scene3D.Tests.csproj b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Tizen.NUI.Scene3D.Tests.csproj new file mode 100755 index 0000000..721140f --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Tizen.NUI.Scene3D.Tests.csproj @@ -0,0 +1,53 @@ + + + + + Exe +tizen10.0 + Tizen + + + + + true + + + + portable + + + None + + + + + + + + + + True + True + Resource.resx + + + + + PublicResXFileCodeGenerator + Resource.Designer.cs + + + + + Runtime + + + + + + + + + + + diff --git a/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Tizen.NUI.Scene3D.Tests.sln b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Tizen.NUI.Scene3D.Tests.sln new file mode 100755 index 0000000..0b40443 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/Tizen.NUI.Scene3D.Tests.sln @@ -0,0 +1,64 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.26124.0 +MinimumVisualStudioVersion = 15.0.26124.0 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tizen.NUI.Scene3D.Tests", "Tizen.NUI.Scene3D.Tests.csproj", "{EDA7CE08-63F0-4D30-A8DC-000A32C39119}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "nunit.framework", "..\nunit.framework\nunit.framework.csproj", "{C3B4E786-5F63-4253-ABC5-DB2268FF3278}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "nunitlite", "..\nunitlite\nunitlite.csproj", "{1EE295D5-6D47-4279-89B2-3095EF49628B}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|x64 = Release|x64 + Release|x86 = Release|x86 + 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|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|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|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|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|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|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.Scene3D.Tests/res/AnimatedCube.bin b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/res/AnimatedCube.bin new file mode 100644 index 0000000..72f7d2d Binary files /dev/null and b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/res/AnimatedCube.bin differ diff --git a/tct-suite-vs/Tizen.NUI.Scene3D.Tests/res/AnimatedCube.gltf b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/res/AnimatedCube.gltf new file mode 100644 index 0000000..995d3b1 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/res/AnimatedCube.gltf @@ -0,0 +1,398 @@ +{ + "accessors" : [ + { + "bufferView" : 0, + "byteOffset" : 0, + "componentType" : 5126, + "count" : 3, + "max" : [ + 2.000000 + ], + "min" : [ + 0.000000 + ], + "type" : "SCALAR" + }, + { + "bufferView" : 1, + "byteOffset" : 0, + "componentType" : 5126, + "count" : 3, + "max" : [ + 0.000000, + 1.000000, + 0.000000, + 1.000000 + ], + "min" : [ + 0.000000, + -8.742278e-008, + 0.000000, + -1.000000 + ], + "type" : "VEC4" + }, + { + "bufferView" : 2, + "byteOffset" : 0, + "componentType" : 5123, + "count" : 36, + "max" : [ + 35 + ], + "min" : [ + 0 + ], + "type" : "SCALAR" + }, + { + "bufferView" : 3, + "byteOffset" : 0, + "componentType" : 5126, + "count" : 36, + "max" : [ + 1.000000, + 1.000000, + 1.000001 + ], + "min" : [ + -1.000000, + -1.000000, + -1.000000 + ], + "type" : "VEC3" + }, + { + "bufferView" : 4, + "byteOffset" : 0, + "componentType" : 5126, + "count" : 36, + "max" : [ + 1.000000, + 1.000000, + 1.000000 + ], + "min" : [ + -1.000000, + -1.000000, + -1.000000 + ], + "type" : "VEC3" + }, + { + "bufferView" : 5, + "byteOffset" : 0, + "componentType" : 5126, + "count" : 36, + "max" : [ + 1.000000, + -0.000000, + -0.000000, + 1.000000 + ], + "min" : [ + 0.000000, + -0.000000, + -1.000000, + -1.000000 + ], + "type" : "VEC4" + }, + { + "bufferView" : 6, + "byteOffset" : 0, + "componentType" : 5126, + "count" : 36, + "max" : [ + 1.000000, + 1.000000 + ], + "min" : [ + -1.000000, + -1.000000 + ], + "type" : "VEC2" + } + ], + "animations" : [ + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 0, + "path" : "rotation" + } + } + ], + "name" : "animation_AnimatedCube", + "samplers" : [ + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 1 + } + ] + } + ], + "asset" : { + "generator" : "VKTS glTF 2.0 exporter", + "version" : "2.0" + }, + "bufferViews" : [ + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 0 + }, + { + "buffer" : 0, + "byteLength" : 48, + "byteOffset" : 12 + }, + { + "buffer" : 0, + "byteLength" : 72, + "byteOffset" : 60, + "target" : 34963 + }, + { + "buffer" : 0, + "byteLength" : 432, + "byteOffset" : 132, + "target" : 34962 + }, + { + "buffer" : 0, + "byteLength" : 432, + "byteOffset" : 564, + "target" : 34962 + }, + { + "buffer" : 0, + "byteLength" : 576, + "byteOffset" : 996, + "target" : 34962 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 1572, + "target" : 34962 + } + ], + "buffers" : [ + { + "byteLength" : 1860, + "uri" : "AnimatedCube.bin" + } + ], + "images" : [ + { + "uri" : "AnimatedCube_BaseColor.png" + }, + { + "uri" : "AnimatedCube_MetallicRoughness.png" + } + ], + "materials" : [ + { + "name" : "AnimatedCube", + "pbrMetallicRoughness" : { + "baseColorTexture" : { + "index" : 0 + }, + "baseColorFactor": [ 1.000, 0.766, 0.336, 1.0 ], + "metallicFactor": 1.0, + "roughnessFactor": 0.0 + }, + "normalTexture": { + "scale": 1, + "index": 0 + }, + "occlusionTexture": { + "index": 0 + }, + "emissiveTexture": { + "index": 0 + }, + "emissiveFactor": [ 0.2, 0.1, 0.0 ], + "doubleSided": false, + "alphaMode": "MASK", + "alphaCutoff": 0.5 + }, + { + "name" : "AnimatedCube2", + "pbrMetallicRoughness" : { + "baseColorTexture" : { + "index" : 0 + }, + "metallicRoughnessTexture" : { + "index" : 1 + }, + "baseColorFactor": [ 1.000, 0.766, 0.336, 1.0 ], + "metallicFactor": 1.0, + "roughnessFactor": 0.0 + }, + "normalTexture": { + "scale": 1, + "index": 0 + }, + "occlusionTexture": { + "index": 0 + }, + "emissiveTexture": { + "index": 0 + }, + "emissiveFactor": [ 0.2, 0.1, 0.0 ], + "doubleSided": false, + "alphaMode": "OPAQUE" + } + ], + "meshes" : [ + { + "name" : "AnimatedCube", + "primitives" : [ + { + "attributes" : { + "NORMAL" : 4, + "POSITION" : 3, + "TANGENT" : 5, + "TEXCOORD_0" : 6, + "COLOR_0" : 3 + }, + "indices" : 2, + "material" : 0, + "mode" : 4 + } + ] + }, + { + "name" : "AnimatedCube2", + "primitives" : [ + { + "attributes" : { + "NORMAL" : 4, + "POSITION" : 3, + "TANGENT" : 5, + "TEXCOORD_0" : 6, + "COLOR_0" : 3 + }, + "indices" : 2, + "material" : 1, + "mode" : 4 + } + ] + } + ], + "nodes" : [ + { + "mesh" : 0, + "name" : "AnimatedCube", + "rotation" : [ + 0.000000, + -1.000000, + 0.000000, + 0.000000 + ] + }, + { + "mesh" : 1, + "name" : "AnimatedCube2" + }, + { + + "camera" : 0, + "scale" : [ 0.5, 0.5, 3.0 ] + }, + { + "camera" : 1, + "translation" : [ 0.5, 0.5, 3.0 ], + "children": [ + 4 + ] + }, + { + "camera" : 2, + "matrix": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0 + ] + } + ], + "scene" : 0, + "scenes" : [ + { + "nodes" : [ + 0, 1, 2, 3 + ] + } + ], + "textures" : [ + { + "sampler" : 0, + "source" : 0 + }, + { + "sampler" : 1, + "source" : 1 + } + ], + "cameras" : [ + { + "type": "perspective", + "perspective": { + "aspectRatio": 1.0, + "yfov": 0.7, + "zfar": 100.0, + "znear": 0.01 + } + }, + { + "type": "orthographic", + "orthographic": { + "xmag": 1.0, + "ymag": 1.0, + "zfar": 100.0, + "znear": 0.01 + } + }, + { + "type": "orthographic", + "orthographic": { + "xmag": 1.0, + "ymag": 1.0, + "zfar": 100.0, + "znear": 0.01 + } + } + ], + "samplers": [ + { + "magFilter": 9729, + "minFilter": 9987, + "wrapS": 33071, + "wrapT": 10497 + }, + { + "magFilter": 9728, + "minFilter": 9986, + "wrapS": 33071, + "wrapT": 33648 + } + ] +} \ No newline at end of file diff --git a/tct-suite-vs/Tizen.NUI.Scene3D.Tests/res/AnimatedCube_BaseColor.png b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/res/AnimatedCube_BaseColor.png new file mode 100644 index 0000000..5e5cb20 Binary files /dev/null and b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/res/AnimatedCube_BaseColor.png differ diff --git a/tct-suite-vs/Tizen.NUI.Scene3D.Tests/res/AnimatedCube_MetallicRoughness.png b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/res/AnimatedCube_MetallicRoughness.png new file mode 100644 index 0000000..efd2026 Binary files /dev/null and b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/res/AnimatedCube_MetallicRoughness.png differ diff --git a/tct-suite-vs/Tizen.NUI.Scene3D.Tests/res/Irradiance.ktx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/res/Irradiance.ktx new file mode 100644 index 0000000..df24c05 Binary files /dev/null and b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/res/Irradiance.ktx differ diff --git a/tct-suite-vs/Tizen.NUI.Scene3D.Tests/res/Radiance.ktx b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/res/Radiance.ktx new file mode 100644 index 0000000..51aa681 Binary files /dev/null and b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/res/Radiance.ktx differ diff --git a/tct-suite-vs/Tizen.NUI.Scene3D.Tests/shared/res/Tizen.NUI.Scene3D.Tests.png b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/shared/res/Tizen.NUI.Scene3D.Tests.png new file mode 100755 index 0000000..9765b1b Binary files /dev/null and b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/shared/res/Tizen.NUI.Scene3D.Tests.png differ diff --git a/tct-suite-vs/Tizen.NUI.Scene3D.Tests/testcase/TSModel.cs b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/testcase/TSModel.cs new file mode 100755 index 0000000..b048648 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/testcase/TSModel.cs @@ -0,0 +1,155 @@ +using NUnit.Framework; +using NUnit.Framework.TUnit; +using System; +using Tizen.NUI; +using Tizen.NUI.Components; +using Tizen.NUI.Scene3D; +using System.Threading.Tasks; +using Tizen.NUI.Scene3D.Test; + +namespace Tizen.NUI.Scene3D.Tests +{ + [TestFixture] + [Description("Tizen.NUI.Scene3D Tests")] + public class ModelTests + { + private string TAG = "NUI"; + private string diffuseIBLPath = Tizen.Applications.Application.Current.DirectoryInfo.Resource + "Irradiance.ktx"; + private string specularIBLPath = Tizen.Applications.Application.Current.DirectoryInfo.Resource + "Radiance.ktx"; + private string modelPath = Tizen.Applications.Application.Current.DirectoryInfo.Resource + "AnimatedCube.gltf"; + private string resourcePath = Tizen.Applications.Application.Current.DirectoryInfo.Resource; + + [SetUp] + public void Init() + { + Tizen.Log.Info(TAG, "Init() is called!"); + App.MainTitleChangeText("ModelTest"); + App.MainTitleChangeBackgroundColor(null); + } + + [TearDown] + public void Destroy() + { + Tizen.Log.Info(TAG, "Destroy() is called!"); + } + + [Test] + [Category("P1")] + [Description("Create a Model object. Check whether Model is successfully created or not.")] + [Property("SPEC", "Tizen.NUI.Scene3D.Model.Model C")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "CONSTR")] + [Property("COVPARAM", "string, string")] + [Property("AUTHOR", "Seungho Baek, sbsh.baek@samsung.com")] + public void Model_INIT() + { + /* TEST CODE */ + var model = new Model(modelPath, resourcePath); + Assert.IsNotNull(model, "Can't create success object Model."); + Assert.IsInstanceOf(model, "Construct Model Fail"); + } + + [Test] + [Category("P1")] + [Description("Copy a Model object. Check whether Model is successfully copied or not.")] + [Property("SPEC", "Tizen.NUI.Scene3D.Model.Model C")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "CONSTR")] + [Property("COVPARAM", "Model")] + [Property("AUTHOR", "Seungho Baek, sbsh.baek@samsung.com")] + public void Model_INIT_2() + { + /* TEST CODE */ + var model = new Model(modelPath); + var model2 = new Model(model); + Assert.IsNotNull(model2, "Can't copy success object Model."); + Assert.IsInstanceOf(model2, "Construct Model Fail"); + } + + [Test] + [Category("P1")] + [Description("Test SetImageBasedLightSource. Check whether SetImageBasedLightSource works without error.")] + [Property("SPEC", "Tizen.NUI.Scene3D.Model.SetImageBasedLightSource M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MR")] + [Property("AUTHOR", "Seungho Baek, sbsh.baek@samsung.com")] + public void SetImageBasedLightSource_CHECK_RETURN_VALUE() + { + /* TEST CODE */ + var model = new Model(modelPath); + try + { + model.SetImageBasedLightSource(diffuseIBLPath, specularIBLPath); + } + catch (Exception e) + { + Assert.Fail("Caught Exception" + e.ToString()); + } + } + + [Test] + [Category("P1")] + [Description("Test GetAnimationCount. Check whether GetAnimationCount returns right value.")] + [Property("SPEC", "Tizen.NUI.Scene3D.Model.GetAnimationCount M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MR")] + [Property("AUTHOR", "Seungho Baek, sbsh.baek@samsung.com")] + public async Task GetAnimationCount_CHECK_RETURN_VALUE() + { + /* TEST CODE */ + uint animationCount = 0; + var model = new Model(modelPath); + Window.Instance.GetDefaultLayer().Add(model); + model.ResourcesLoaded += (e, s) => + { + animationCount = model.GetAnimationCount(); + }; + await Task.Delay(500); + Assert.IsTrue(animationCount == 1, "Should be true!"); + } + + [Test] + [Category("P1")] + [Description("Test GetAnimation. Check whether GetAnimation returns right value.")] + [Property("SPEC", "Tizen.NUI.Scene3D.Model.GetAnimation M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MR")] + [Property("COVPARAM", "uint")] + [Property("AUTHOR", "Seungho Baek, sbsh.baek@samsung.com")] + public async Task GetAnimation_CHECK_RETURN_VALUE_WITH_UINT() + { + /* TEST CODE */ + Animation animation = null; + var model = new Model(modelPath); + Window.Instance.Add(model); + model.ResourcesLoaded += (e, s) => + { + animation = model.GetAnimation(0); + }; + await Task.Delay(500); + Assert.IsTrue(animation != null, "Should be true!"); + } + + [Test] + [Category("P1")] + [Description("Test GetAnimation. Check whether GetAnimation returns right value.")] + [Property("SPEC", "Tizen.NUI.Scene3D.Model.GetAnimation M")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "MR")] + [Property("COVPARAM", "string")] + [Property("AUTHOR", "Seungho Baek, sbsh.baek@samsung.com")] + public async Task GetAnimation_CHECK_RETURN_VALUE_WITH_STRING() + { + /* TEST CODE */ + Animation animation = null; + var model = new Model(modelPath); + Window.Instance.Add(model); + model.ResourcesLoaded += (e, s) => + { + animation = model.GetAnimation("animation_AnimatedCube"); + }; + await Task.Delay(500); + Assert.IsTrue(animation != null, "Should be true!"); + } + } +} diff --git a/tct-suite-vs/Tizen.NUI.Scene3D.Tests/tizen-manifest.xml b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/tizen-manifest.xml new file mode 100755 index 0000000..4816941 --- /dev/null +++ b/tct-suite-vs/Tizen.NUI.Scene3D.Tests/tizen-manifest.xml @@ -0,0 +1,17 @@ + + + + + Tizen.NUI.Scene3D.Tests.png + + + + http://tizen.org/privilege/camera + http://tizen.org/privilege/appmanager.launch + +