From: guowei.wang Date: Mon, 18 Oct 2021 09:37:48 +0000 (+0800) Subject: [NUI] Fix dependencies issue of Components.Devel project. X-Git-Tag: accepted/tizen/unified/20231205.024657~1348 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=31621cbaccfcf8255b57d43e0b4f5596a9bbf1b6;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [NUI] Fix dependencies issue of Components.Devel project. --- diff --git a/test/Tizen.NUI.Tests/Tizen.NUI.Components.Devel.Tests/AssemblyInfo.cs b/test/Tizen.NUI.Tests/Tizen.NUI.Components.Devel.Tests/AssemblyInfo.cs deleted file mode 100755 index 1292c25..0000000 --- a/test/Tizen.NUI.Tests/Tizen.NUI.Components.Devel.Tests/AssemblyInfo.cs +++ /dev/null @@ -1,7 +0,0 @@ -using Tizen.NUI.Binding.Internals; -using Tizen.NUI.Components.Devel.Tests; -using Tizen.NUI.Xaml; - -[assembly: XamlCompilation(XamlCompilationOptions.Compile)] -[assembly: Preserve(AllMembers = true)] - diff --git a/test/Tizen.NUI.Tests/Tizen.NUI.Components.Devel.Tests/Tizen.NUI.Components.Devel.Tests.csproj b/test/Tizen.NUI.Tests/Tizen.NUI.Components.Devel.Tests/Tizen.NUI.Components.Devel.Tests.csproj index 7623ef0..6e70b88 100755 --- a/test/Tizen.NUI.Tests/Tizen.NUI.Components.Devel.Tests/Tizen.NUI.Components.Devel.Tests.csproj +++ b/test/Tizen.NUI.Tests/Tizen.NUI.Components.Devel.Tests/Tizen.NUI.Components.Devel.Tests.csproj @@ -3,8 +3,7 @@ Exe - tizen90 - Tizen + netcoreapp3.1 @@ -18,17 +17,6 @@ None - - - - - - - - - - - @@ -37,13 +25,13 @@ - - + + true ./NuiTest.snk diff --git a/test/Tizen.NUI.Tests/Tizen.NUI.Components.Devel.Tests/Tizen.NUI.Components.Devel.Tests.sln b/test/Tizen.NUI.Tests/Tizen.NUI.Components.Devel.Tests/Tizen.NUI.Components.Devel.Tests.sln new file mode 100755 index 0000000..6410d43 --- /dev/null +++ b/test/Tizen.NUI.Tests/Tizen.NUI.Components.Devel.Tests/Tizen.NUI.Components.Devel.Tests.sln @@ -0,0 +1,37 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31112.23 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tizen.NUI.Components.Devel.Tests", "Tizen.NUI.Components.Devel.Tests.csproj", "{FDD59395-4BD7-4F1A-A7A1-9C95929A0902}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "nunit.framework", "..\nunit.framework\nunit.framework.csproj", "{400E7822-8340-4AB7-A78F-9CC41CBE1969}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "nunitlite", "..\nunitlite\nunitlite.csproj", "{68DA4488-EF9F-4497-8681-DE094BDD5744}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {FDD59395-4BD7-4F1A-A7A1-9C95929A0902}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FDD59395-4BD7-4F1A-A7A1-9C95929A0902}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FDD59395-4BD7-4F1A-A7A1-9C95929A0902}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FDD59395-4BD7-4F1A-A7A1-9C95929A0902}.Release|Any CPU.Build.0 = Release|Any CPU + {400E7822-8340-4AB7-A78F-9CC41CBE1969}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {400E7822-8340-4AB7-A78F-9CC41CBE1969}.Debug|Any CPU.Build.0 = Debug|Any CPU + {400E7822-8340-4AB7-A78F-9CC41CBE1969}.Release|Any CPU.ActiveCfg = Release|Any CPU + {400E7822-8340-4AB7-A78F-9CC41CBE1969}.Release|Any CPU.Build.0 = Release|Any CPU + {68DA4488-EF9F-4497-8681-DE094BDD5744}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {68DA4488-EF9F-4497-8681-DE094BDD5744}.Debug|Any CPU.Build.0 = Debug|Any CPU + {68DA4488-EF9F-4497-8681-DE094BDD5744}.Release|Any CPU.ActiveCfg = Release|Any CPU + {68DA4488-EF9F-4497-8681-DE094BDD5744}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {913AE2D0-5429-42FF-9269-B40FA5D29E84} + EndGlobalSection +EndGlobal diff --git a/test/Tizen.NUI.Tests/Tizen.NUI.Components.Devel.Tests/testcase/Controls/TSToast.cs b/test/Tizen.NUI.Tests/Tizen.NUI.Components.Devel.Tests/testcase/Controls/TSToast.cs new file mode 100755 index 0000000..f683b92 --- /dev/null +++ b/test/Tizen.NUI.Tests/Tizen.NUI.Components.Devel.Tests/testcase/Controls/TSToast.cs @@ -0,0 +1,31 @@ + +using global::System; +using NUnit.Framework; +using NUnit.Framework.TUnit; +using Tizen.NUI; +using Tizen.NUI.Components; +using Tizen.NUI.BaseComponents; + +namespace Tizen.NUI.Components.Devel.Tests +{ + using tlog = Tizen.Log; + + [TestFixture] + [Description("Control/Toast")] + public class ControlToastTest + { + private const string tag = "NUITEST"; + + [SetUp] + public void Init() + { + tlog.Info(tag, "Init() is called!"); + } + + [TearDown] + public void Destroy() + { + tlog.Info(tag, "Destroy() is called!"); + } + } +} diff --git a/test/Tizen.NUI.Tests/Tizen.NUI.Components.Devel.Tests/tizen-manifest.xml b/test/Tizen.NUI.Tests/Tizen.NUI.Components.Devel.Tests/tizen-manifest.xml index 6d44e06..e32dbc1 100755 --- a/test/Tizen.NUI.Tests/Tizen.NUI.Components.Devel.Tests/tizen-manifest.xml +++ b/test/Tizen.NUI.Tests/Tizen.NUI.Components.Devel.Tests/tizen-manifest.xml @@ -1,5 +1,5 @@ - + - Tizen.NUI.Devel.Tests.png - + Tizen.NUI.Components.Devel.Tests.png + http://tizen.org/privilege/appmanager.launch diff --git a/test/Tizen.NUI.Tests/nunit.framework/nunit.framework.csproj b/test/Tizen.NUI.Tests/nunit.framework/nunit.framework.csproj index 62a1b05..40380f7 100755 --- a/test/Tizen.NUI.Tests/nunit.framework/nunit.framework.csproj +++ b/test/Tizen.NUI.Tests/nunit.framework/nunit.framework.csproj @@ -6,10 +6,9 @@ - - - + + Runtime + -