using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />\r
</ItemGroup>\r
\r
- <!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
</ItemGroup>\r
\r
+ <!-- Include Nuget Package for Tizen Project building -->\r
+\r
</Project>\r
<?xml version="1.0" encoding="utf-8"?>\r
<manifest package="Tizen.Accounts.Tests" version="1.0.0" api-version="8" xmlns="http://tizen.org/ns/packages">\r
<profile name="common" />\r
- <ui-application appid="Tizen.Accounts.Tests" exec="Tizen.Accounts.Tests.dll" multiple="false" taskmanage="true" splash-screen-display="true" type="dotnet" launch_mode="single">\r
+ <service-application appid="Tizen.Accounts.Tests" exec="Tizen.Accounts.Tests.dll" type="dotnet">\r
<icon>Tizen.Accounts.Tests.png</icon>\r
<label>Tizen.Accounts.Tests</label>\r
- </ui-application>\r
+ </service-application>\r
<shortcut-list />\r
<account>\r
<account-provider appid="Tizen.Accounts.Tests" multiple-accounts-support="true" providerid="http://www.tizen.org">\r
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
\r
<!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
</ItemGroup>\r
\r
</Project>\r
<?xml version="1.0" encoding="utf-8"?>
<manifest package="Tizen.Alarm.Tests" version="1.0.0" api-version="8" xmlns="http://tizen.org/ns/packages">
<profile name="common" />
- <ui-application appid="Tizen.Alarm.Tests" exec="Tizen.Alarm.Tests.dll" multiple="false" taskmanage="true" splash-screen-display="true" type="dotnet" launch_mode="single">
+ <service-application appid="Tizen.Alarm.Tests" exec="Tizen.Alarm.Tests.dll" type="dotnet">
<icon>Tizen.Alarm.Tests.png</icon>
<label>Tizen.Alarm.Tests</label>
- </ui-application>
+ </service-application>
<shortcut-list />
<privileges>
<privilege>http://tizen.org/privilege/alarm.set</privilege>
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
-}
+}
\ No newline at end of file
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />
</ItemGroup>
- <!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
</ItemGroup>
+ <!-- Include Nuget Package for Tizen Project building -->
+
</Project>
<?xml version="1.0" encoding="utf-8"?>
<manifest package="Tizen.Applications.EventManager.Tests" version="1.0.0" api-version="8" xmlns="http://tizen.org/ns/packages">
<profile name="common" />
- <ui-application appid="Tizen.Applications.EventManager.Tests" exec="Tizen.Applications.EventManager.Tests.dll" multiple="false" taskmanage="true" splash-screen-display="true" type="dotnet" launch_mode="single">
+ <service-application appid="Tizen.Applications.EventManager.Tests" exec="Tizen.Applications.EventManager.Tests.dll" type="dotnet">
<icon>Tizen.ApplicationEvents.Tests.png</icon>
<label>Tizen.Applications.EventManager.Tests</label>
<background-category value="iot-communication" />
<background-category value="location" />
<background-category value="media" />
<background-category value="sensor" />
- </ui-application>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>
<privilege>http://tizen.org/privilege/display</privilege>
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />\r
</ItemGroup>\r
\r
- <!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
</ItemGroup>\r
\r
+ <!-- Include Nuget Package for Tizen Project building -->\r
+\r
</Project>\r
<?xml version="1.0" encoding="utf-8"?>\r
<manifest package="Tizen.Applications.Tests" version="1.0.0" api-version="8" xmlns="http://tizen.org/ns/packages">\r
<profile name="common" />\r
- <ui-application appid="Tizen.Applications.Tests" exec="Tizen.Applications.Tests.dll" multiple="false" taskmanage="true" type="dotnet" splash-screen-display="true" launch_mode="single">\r
+ <service-application appid="Tizen.Applications.Tests" exec="Tizen.Applications.Tests.dll" type="dotnet">\r
<icon>Tizen.Applications.Tests.png</icon>\r
<label>Tizen.Applications.Tests</label>\r
<background-category value="background-network" />\r
<background-category value="media" />\r
<background-category value="sensor" />\r
<splash-screens />\r
- </ui-application>\r
+ </service-application>\r
<shortcut-list />\r
<privileges>\r
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>\r
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />
</ItemGroup>
- <!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
<ProjectReference Include="..\Tizen.Multimedia.Support.Library\Tizen.Multimedia.Support.Library.csproj" />
</ItemGroup>
+ <!-- Include Nuget Package for Tizen Project building -->
+
</Project>
<?xml version="1.0" encoding="utf-8"?>\r
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.AudioIO.Tests" version="1.0.0">\r
<profile name="common" />\r
- <ui-application appid="Tizen.AudioIO.Tests"\r
- exec="Tizen.AudioIO.Tests.dll"\r
- type="dotnet"\r
- multiple="false"\r
- taskmanage="true"\r
- launch_mode="single">\r
- <icon>Tizen.AudioIO.Tests.png</icon>\r
- <label>Tizen.AudioIO.Tests</label>\r
- </ui-application>\r
+ <service-application appid="Tizen.AudioIO.Tests" exec="Tizen.AudioIO.Tests.dll" type="dotnet">\r
+ <icon>Tizen.AudioIO.Tests.png</icon>\r
+ <label>Tizen.AudioIO.Tests</label>\r
+ </service-application>\r
<privileges>\r
<privilege>http://tizen.org/privilege/recorder</privilege>\r
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>\r
-/*
- * Copyright (c) 2016 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
-}
\ No newline at end of file
+}
+
\r
<!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
</ItemGroup>\r
\r
</Project>\r
<?xml version="1.0" encoding="utf-8"?>\r
<manifest package="Tizen.Bluetooth.Tests" version="1.0.0" api-version="8" xmlns="http://tizen.org/ns/packages">\r
<profile name="common" />\r
- <ui-application appid="Tizen.Bluetooth.Tests" exec="Tizen.Bluetooth.Tests.dll" multiple="false" taskmanage="true" splash-screen-display="true" type="dotnet" launch_mode="single">\r
+ <service-application appid="Tizen.Bluetooth.Tests" exec="Tizen.Bluetooth.Tests.dll" type="dotnet">\r
<icon>Tizen.Bluetooth.Tests.png</icon>\r
<label>Tizen.Bluetooth.Tests</label>\r
- </ui-application>\r
+ </service-application>\r
<shortcut-list />\r
<privileges>\r
<privilege>http://tizen.org/privilege/network.get</privilege>\r
-/*
- * Copyright (c) 2016 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
-}
\ No newline at end of file
+}
+
\r
<!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
</ItemGroup>\r
\r
</Project>\r
<?xml version="1.0" encoding="utf-8"?>\r
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Calendar.Tests" version="1.0.0">\r
<profile name="common" />\r
- <ui-application appid="Tizen.Calendar.Tests"\r
- exec="Tizen.Calendar.Tests.dll"\r
- type="dotnet"\r
- multiple="false"\r
- taskmanage="true"\r
- launch_mode="single">\r
+ <service-application appid="Tizen.Calendar.Tests" exec="Tizen.Calendar.Tests.dll" type="dotnet">\r
<icon>Tizen.Calendar.Tests.png</icon>\r
<label>Tizen.Calendar.Tests</label>\r
- </ui-application>\r
+ </service-application>\r
<privileges>\r
<privilege>http://tizen.org/privilege/calendar.read</privilege>\r
<privilege>http://tizen.org/privilege/calendar.write</privilege>\r
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />\r
</ItemGroup>\r
\r
- <!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
</ItemGroup>\r
\r
+ <!-- Include Nuget Package for Tizen Project building -->\r
</Project>\r
<?xml version="1.0" encoding="utf-8"?>\r
<manifest package="Tizen.Common.Tests" version="1.0.0" api-version="8" xmlns="http://tizen.org/ns/packages">\r
<profile name="common" />\r
- <ui-application appid="Tizen.Common.Tests" exec="Tizen.Common.Tests.dll" multiple="false" taskmanage="true" splash-screen-display="true" type="dotnet" launch_mode="single">\r
+ <service-application appid="Tizen.Common.Tests" exec="Tizen.Common.Tests.dll" type="dotnet">\r
<label>Tizen.Common.Tests</label>\r
<icon>Tizen.Common.Tests.png</icon>\r
- </ui-application>\r
+ </service-application>\r
<privileges>\r
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>\r
</privileges>\r
-/*
- * Copyright (c) 2018 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
}
+
<!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
</ItemGroup>
</Project>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Connection.Tests" version="1.0.0">
<profile name="common" />
- <ui-application appid="Tizen.Connection.Tests"
- exec="Tizen.Connection.Tests.dll"
- type="dotnet"
- multiple="false"
- taskmanage="true"
- launch_mode="single">
+ <service-application appid="Tizen.Connection.Tests" exec="Tizen.Connection.Tests.dll" type="dotnet">
<icon>Tizen.Connection.Tests.png</icon>
<label>Tizen.Connection.Tests</label>
- </ui-application>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/network.get</privilege>
<privilege>http://tizen.org/privilege/network.set</privilege>
-/*
- * Copyright (c) 2016 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
-}
\ No newline at end of file
+}
+
\r
<!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
</ItemGroup>\r
\r
</Project>\r
<?xml version="1.0" encoding="utf-8"?>\r
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Contacts.Tests" version="1.0.0">\r
<profile name="common" />\r
- <ui-application appid="Tizen.Contacts.Tests"\r
- exec="Tizen.Contacts.Tests.dll"\r
- type="dotnet"\r
- multiple="false"\r
- taskmanage="true"\r
- launch_mode="single">\r
+ <service-application appid="Tizen.Contacts.Tests" exec="Tizen.Contacts.Tests.dll" type="dotnet">\r
<icon>Tizen.Contacts.Tests.png</icon>\r
<label>Tizen.Contacts.Tests</label>\r
- </ui-application>\r
+ </service-application>\r
<privileges>\r
<privilege>http://tizen.org/privilege/contact.read</privilege>\r
<privilege>http://tizen.org/privilege/contact.write</privilege>\r
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />\r
</ItemGroup>\r
\r
- <!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
</ItemGroup>\r
\r
+ <!-- Include Nuget Package for Tizen Project building -->\r
+\r
</Project>\r
<?xml version="1.0" encoding="utf-8"?>\r
<manifest package="Tizen.Context.Tests" version="1.0.0" api-version="8" xmlns="http://tizen.org/ns/packages">\r
<profile name="common" />\r
- <ui-application appid="Tizen.Context.Tests" exec="Tizen.Context.Tests.dll" multiple="false" taskmanage="true" splash-screen-display="true" type="dotnet" launch_mode="single">\r
+ <service-application appid="Tizen.Context.Tests" exec="Tizen.Context.Tests.dll" type="dotnet">\r
<icon>Tizen.Context.Tests.png</icon>\r
<label>Tizen.Context.Tests</label>\r
- </ui-application>\r
+ </service-application>\r
<shortcut-list />\r
<privileges>\r
<privilege>http://tizen.org/privilege/apphistory.read</privilege>\r
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />\r
</ItemGroup>\r
\r
- <!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
</ItemGroup>\r
\r
+ <!-- Include Nuget Package for Tizen Project building -->\r
+\r
</Project>\r
<?xml version="1.0" encoding="utf-8"?>\r
<manifest package="Tizen.DataControl.Tests" version="1.0.0" api-version="8" xmlns="http://tizen.org/ns/packages">\r
<profile name="common" />\r
- <ui-application appid="Tizen.DataControl.Tests" exec="Tizen.DataControl.Tests.dll" multiple="false" taskmanage="true" splash-screen-display="true" type="dotnet" launch_mode="single">\r
+ <service-application appid="Tizen.DataControl.Tests" exec="Tizen.DataControl.Tests.dll" type="dotnet">\r
<icon>Tizen.DataControl.Tests.png</icon>\r
<label>Tizen.DataControl.Tests</label>\r
<datacontrol providerid="http://Tizen.DataControl.Tests.exe.com/datacontrol/provider/Tizen.DataControl.Tests.exe" access="ReadWrite" type="Sql" />\r
<datacontrol providerid="http://Tizen.DataControl.Tests.exe.com/datacontrol/provider/Tizen.DataControl.Tests.exe" access="ReadWrite" type="Map" />\r
- </ui-application>\r
+ </service-application>\r
<shortcut-list />\r
<privileges>\r
<privilege>http://tizen.org/privilege/datasharing</privilege>\r
-/*
- * Copyright (c) 2016 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
-}
\ No newline at end of file
+}
+
\r
<!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
</ItemGroup>\r
\r
</Project>\r
<?xml version="1.0" encoding="utf-8"?>
<manifest package="Tizen.Device.Tests" version="1.0.0" api-version="8" xmlns="http://tizen.org/ns/packages">
<profile name="common" />
- <ui-application appid="Tizen.Device.Tests" exec="Tizen.Device.Tests.dll" multiple="false" taskmanage="true" splash-screen-display="true" type="dotnet" launch_mode="single">
+ <service-application appid="Tizen.Device.Tests" exec="Tizen.Device.Tests.dll" type="dotnet">
<icon>Tizen.Device.Tests.png</icon>
<label>Tizen.Device.Tests</label>
- </ui-application>
+ </service-application>
<shortcut-list />
<privileges>
<privilege>http://tizen.org/privilege/haptic</privilege>
-/*
- * Copyright (c) 2019 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
}
+
<!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
</ItemGroup>
</Project>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.DevicePolicyManager.Tests" version="1.0.0">
<profile name="common" />
- <ui-application appid="Tizen.DevicePolicyManager.Tests"
- exec="Tizen.DevicePolicyManager.Tests.dll"
- type="dotnet"
- multiple="false"
- taskmanage="true"
- launch_mode="single">
+ <service-application appid="Tizen.DevicePolicyManager.Tests" exec="Tizen.DevicePolicyManager.Tests.dll" type="dotnet">
<icon>Tizen.DevicePolicyManager.Tests.png</icon>
<label>Tizen.DevicePolicyManager.Tests</label>
- </ui-application>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>
</privileges>
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />\r
</ItemGroup>\r
\r
- <!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
</ItemGroup>\r
\r
+ <!-- Include Nuget Package for Tizen Project building -->\r
+\r
</Project>\r
<?xml version="1.0" encoding="utf-8"?>\r
<manifest package="Tizen.DotnetUtil.Tests" version="1.0.0" api-version="8" xmlns="http://tizen.org/ns/packages">\r
<profile name="common" />\r
- <ui-application appid="Tizen.DotnetUtil.Tests" exec="Tizen.DotnetUtil.Tests.dll" multiple="false" taskmanage="true" splash-screen-display="true" type="dotnet" launch_mode="single">\r
+ <service-application appid="Tizen.DotnetUtil.Tests" exec="Tizen.DotnetUtil.Tests.dll" type="dotnet">\r
<label>Tizen.DotnetUtil.Tests</label>\r
<icon>Tizen.DotnetUtil.Tests.png</icon>\r
- </ui-application>\r
- <privileges>\r
+ </service-application>\r
+ <privileges>\r
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>\r
</privileges>\r
</manifest>\r
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />\r
</ItemGroup>\r
\r
- <!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
</ItemGroup>\r
\r
+ <!-- Include Nuget Package for Tizen Project building -->\r
+\r
</Project>\r
<?xml version="1.0" encoding="utf-8"?>
<manifest package="Tizen.Download.Tests" version="1.0.0" api-version="8" xmlns="http://tizen.org/ns/packages">
<profile name="common" />
- <ui-application appid="Tizen.Download.Tests" exec="Tizen.Download.Tests.dll" multiple="false" taskmanage="true" splash-screen-display="true" type="dotnet" launch_mode="single">
+ <service-application appid="Tizen.Download.Tests" exec="Tizen.Download.Tests.dll" type="dotnet">
<icon>Tizen.Download.Tests.png</icon>
<label>Tizen.Download.Tests</label>
- </ui-application>
+ </service-application>
<shortcut-list />
<privileges>
<privilege>http://tizen.org/privilege/download</privilege>
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />\r
</ItemGroup>\r
\r
- <!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
</ItemGroup>\r
\r
+ <!-- Include Nuget Package for Tizen Project building -->\r
+\r
</Project>\r
<?xml version="1.0" encoding="utf-8"?>\r
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Email.Tests" version="1.0.0">\r
<profile name="common" />\r
- <ui-application appid="Tizen.Email.Tests"\r
- exec="Tizen.Email.Tests.dll"\r
- type="dotnet"\r
- multiple="false"\r
- taskmanage="true"\r
- launch_mode="single">\r
- <icon>Tizen.Email.Tests.png</icon>\r
- <label>Tizen.Email.Tests</label>\r
- </ui-application>\r
+ <service-application appid="Tizen.Email.Tests" exec="Tizen.Email.Tests.dll" type="dotnet">\r
+ <icon>Tizen.Email.Tests.png</icon>\r
+ <label>Tizen.Email.Tests</label>\r
+ </service-application>\r
<privileges>\r
<privilege>http://tizen.org/privilege/email</privilege>\r
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>\r
-/*
- * Copyright (c) 2016 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
-}
\ No newline at end of file
+}
+
\r
<!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
</ItemGroup>\r
\r
</Project>\r
<?xml version="1.0" encoding="utf-8"?>\r
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Feedback.Tests" version="1.0.0">\r
<profile name="common" />\r
- <ui-application appid="Tizen.Feedback.Tests"\r
- exec="Tizen.Feedback.Tests.dll"\r
- type="dotnet"\r
- multiple="false"\r
- taskmanage="true"\r
- launch_mode="single">\r
+ <service-application appid="Tizen.Feedback.Tests" exec="Tizen.Feedback.Tests.dll" type="dotnet">\r
<icon>Tizen.Feedback.Tests.png</icon>\r
<label>Tizen.Feedback.Tests</label>\r
- </ui-application>\r
+ </service-application>\r
<privileges>\r
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>\r
<privilege>http://tizen.org/privilege/haptic</privilege>\r
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />\r
</ItemGroup>\r
\r
- <!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
</ItemGroup>\r
\r
+ <!-- Include Nuget Package for Tizen Project building -->\r
+\r
</Project>\r
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.FidoClient.Tests" version="1.0.0">
<profile name="common" />
- <ui-application appid="Tizen.FidoClient.Tests"
- exec="Tizen.FidoClient.Tests.dll"
- type="dotnet"
- multiple="false"
- taskmanage="true"
- launch_mode="single">
- <icon>Tizen.FidoClient.Tests.png</icon>
- <label>Tizen.FidoClient.Tests</label>
- </ui-application>
+ <service-application appid="Tizen.FidoClient.Tests" exec="Tizen.FidoClient.Tests.dll" type="dotnet">
+ <icon>Tizen.FidoClient.Tests.png</icon>
+ <label>Tizen.FidoClient.Tests</label>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/fido.client</privilege>
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />\r
</ItemGroup>\r
\r
- <!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
</ItemGroup>\r
\r
+ <!-- Include Nuget Package for Tizen Project building -->\r
+\r
</Project>\r
<?xml version="1.0" encoding="utf-8"?>\r
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Geofence.Tests" version="1.0.0">\r
<profile name="common" />\r
- <ui-application appid="Tizen.Geofence.Tests"\r
- exec="Tizen.Geofence.Tests.dll"\r
- type="dotnet"\r
- multiple="false"\r
- taskmanage="true"\r
- launch_mode="single">\r
- <icon>Tizen.Geofence.Tests.png</icon>\r
- <label>Tizen.Geofence.Tests</label>\r
- </ui-application>\r
+ <service-application appid="Tizen.Geofence.Tests" exec="Tizen.Geofence.Tests.dll" type="dotnet">\r
+ <icon>Tizen.Geofence.Tests.png</icon>\r
+ <label>Tizen.Geofence.Tests</label>\r
+ </service-application>\r
<privileges>\r
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>\r
<privilege>http://tizen.org/privilege/location</privilege>\r
-/*
- * Copyright (c) 2016 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
-}
\ No newline at end of file
+}
+
\r
<!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
</ItemGroup>\r
\r
</Project>\r
<?xml version="1.0" encoding="utf-8"?>\r
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Information.Tests" version="1.0.0">\r
<profile name="common" />\r
- <ui-application appid="Tizen.Information.Tests"\r
- exec="Tizen.Information.Tests.dll"\r
- type="dotnet"\r
- multiple="false"\r
- taskmanage="true"\r
- launch_mode="single">\r
+ <service-application appid="Tizen.Information.Tests" exec="Tizen.Information.Tests.dll" type="dotnet">\r
<icon>Tizen.Information.Tests.png</icon>\r
<label>Tizen.Information.Tests</label>\r
- </ui-application>\r
+ </service-application>\r
<privileges>\r
<privilege>http://tizen.org/privilege/systemmonitor</privilege>\r
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>\r
-/*
- * Copyright (c) 2016 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
-}
\ No newline at end of file
+}
+
\r
<!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
</ItemGroup>\r
\r
</Project>\r
<?xml version="1.0" encoding="utf-8"?>\r
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.IoTConnectivityClient.Tests" version="1.0.0">\r
<profile name="common" />\r
- <ui-application appid="Tizen.IoTConnectivityClient.Tests"\r
- exec="Tizen.IoTConnectivityClient.Tests.dll"\r
- type="dotnet"\r
- multiple="false"\r
- taskmanage="true"\r
- launch_mode="single">\r
+ <service-application appid="Tizen.IoTConnectivityClient.Tests" exec="Tizen.IoTConnectivityClient.Tests.dll" type="dotnet">\r
<icon>Tizen.IoTConnectivityClient.Tests.png</icon>\r
<label>Tizen.IoTConnectivityClient.Tests</label>\r
<background-category value="iot-communication"/>\r
- </ui-application>\r
+ </service-application>\r
<privileges>\r
<privilege>http://tizen.org/privilege/network.get</privilege>\r
<privilege>http://tizen.org/privilege/internet</privilege>\r
-/*
- * Copyright (c) 2016 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
-}
\ No newline at end of file
+}
+
\r
<!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
</ItemGroup>\r
\r
</Project>\r
<?xml version="1.0" encoding="utf-8"?>\r
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.IoTConnectivityServer.Tests" version="1.0.0">\r
<profile name="common" />\r
- <ui-application appid="Tizen.IoTConnectivityServer.Tests"\r
- exec="Tizen.IoTConnectivityServer.Tests.dll"\r
- type="dotnet"\r
- multiple="false"\r
- taskmanage="true"\r
- launch_mode="single">\r
+ <service-application appid="Tizen.IoTConnectivityServer.Tests" exec="Tizen.IoTConnectivityServer.Tests.dll" type="dotnet">\r
<icon>Tizen.IoTConnectivityServer.Tests.png</icon>\r
<label>Tizen.IoTConnectivityServer.Tests</label>\r
<background-category value="iot-communication"/>\r
- </ui-application>\r
+ </service-application>\r
<privileges>\r
<privilege>http://tizen.org/privilege/network.get</privilege>\r
<privilege>http://tizen.org/privilege/internet</privilege>\r
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />\r
</ItemGroup>\r
\r
- <!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
</ItemGroup>\r
\r
+ <!-- Include Nuget Package for Tizen Project building -->\r
+\r
</Project>\r
<?xml version="1.0" encoding="utf-8"?>\r
<manifest package="Tizen.Log.Tests" version="1.0.0" api-version="8" xmlns="http://tizen.org/ns/packages">\r
<profile name="common" />\r
- <ui-application appid="Tizen.Log.Tests" exec="Tizen.Log.Tests.dll" multiple="false" taskmanage="true" splash-screen-display="true" type="dotnet" launch_mode="single">\r
+ <service-application appid="Tizen.Log.Tests" exec="Tizen.Log.Tests.dll" type="dotnet">\r
<icon>Tizen.Log.Tests.png</icon>\r
<label>Tizen.Log.Tests</label>\r
- </ui-application>\r
+ </service-application>\r
<shortcut-list />\r
<privileges>\r
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>\r
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />
</ItemGroup>
- <!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
</ItemGroup>
+ <!-- Include Nuget Package for Tizen Project building -->
+
</Project>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.MachineLearning.Inference.Tests" version="1.0.0">
<profile name="common" />
- <ui-application appid="Tizen.MachineLearning.Inference.Tests"
- exec="Tizen.MachineLearning.Inference.Tests.dll"
- type="dotnet"
- multiple="false"
- taskmanage="true"
- launch_mode="single">
- <icon>Tizen.MachineLearning.Inference.Tests.png</icon>
- <label>Tizen.MachineLearning.Inference.Tests</label>
- </ui-application>
+ <service-application appid="Tizen.MachineLearning.Inference.Tests" exec="Tizen.MachineLearning.Inference.Tests.dll" type="dotnet">
+ <icon>Tizen.MachineLearning.Inference.Tests.png</icon>
+ <label>Tizen.MachineLearning.Inference.Tests</label>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>
</privileges>
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
\r
<!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
<ProjectReference Include="..\Tizen.Multimedia.Support.Library\Tizen.Multimedia.Support.Library.csproj" />\r
</ItemGroup>\r
\r
<?xml version="1.0" encoding="utf-8"?>\r
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.MediaCodec.Tests" version="1.0.0">\r
<profile name="common" />\r
- <ui-application appid="Tizen.MediaCodec.Tests"\r
- exec="Tizen.MediaCodec.Tests.dll"\r
- type="dotnet"\r
- multiple="false"\r
- taskmanage="true"\r
- launch_mode="single">\r
- <icon>Tizen.MediaCodec.Tests.png</icon>\r
- <label>Tizen.MediaCodec.Tests</label>\r
- </ui-application>\r
+ <service-application appid="Tizen.MediaCodec.Tests" exec="Tizen.MediaCodec.Tests.dll" type="dotnet">\r
+ <icon>Tizen.MediaCodec.Tests.png</icon>\r
+ <label>Tizen.MediaCodec.Tests</label>\r
+ </service-application>\r
<privileges>\r
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>\r
</privileges>\r
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
\r
<!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
<ProjectReference Include="..\Tizen.Multimedia.Support.Library\Tizen.Multimedia.Support.Library.csproj" />\r
</ItemGroup>\r
\r
<?xml version="1.0" encoding="utf-8"?>\r
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.MediaController.Tests" version="1.0.0">\r
<profile name="common" />\r
- <ui-application appid="Tizen.MediaController.Tests"\r
- exec="Tizen.MediaController.Tests.dll"\r
- type="dotnet"\r
- multiple="false"\r
- taskmanage="true"\r
- launch_mode="single">\r
- <icon>Tizen.MediaController.Tests.png</icon>\r
- <label>Tizen.MediaController.Tests</label>\r
- </ui-application>\r
+ <service-application appid="Tizen.MediaController.Tests" exec="Tizen.MediaController.Tests.dll" type="dotnet">\r
+ <icon>Tizen.MediaController.Tests.png</icon>\r
+ <label>Tizen.MediaController.Tests</label>\r
+ </service-application>\r
<privileges>\r
<privilege>http://tizen.org/privilege/mediacontroller.client</privilege>\r
<privilege>http://tizen.org/privilege/mediacontroller.server</privilege>\r
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />\r
</ItemGroup>\r
\r
- <!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
</ItemGroup>\r
\r
+ <!-- Include Nuget Package for Tizen Project building -->\r
+\r
</Project>\r
<?xml version="1.0" encoding="utf-8"?>\r
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.MediaKey.Tests" version="1.0.0">\r
<profile name="common" />\r
- <ui-application appid="Tizen.MediaKey.Tests" exec="Tizen.MediaKey.Tests.dll" type="dotnet" multiple="false" taskmanage="true" nodisplay="false">\r
+ <service-application appid="Tizen.MediaKey.Tests" exec="Tizen.MediaKey.Tests.dll" type="dotnet">\r
<icon>icon.png</icon>\r
<label>Tizen.MediaKey.Tests</label>\r
- </ui-application>\r
+ </service-application>\r
<privileges>\r
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>\r
</privileges>\r
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
\r
<!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
<ProjectReference Include="..\Tizen.Multimedia.Support.Library\Tizen.Multimedia.Support.Library.csproj" />\r
</ItemGroup>\r
\r
<?xml version="1.0" encoding="utf-8"?>\r
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.MediaPlayer.Tests" version="1.0.0">\r
<profile name="common" />\r
- <ui-application appid="Tizen.MediaPlayer.Tests"\r
- exec="Tizen.MediaPlayer.Tests.dll"\r
- type="dotnet"\r
- multiple="false"\r
- taskmanage="true"\r
- launch_mode="single">\r
- <icon>Tizen.MediaPlayer.Tests.png</icon>\r
- <label>Tizen.MediaPlayer.Tests</label>\r
- </ui-application>\r
+ <service-application appid="Tizen.MediaPlayer.Tests" exec="Tizen.MediaPlayer.Tests.dll" type="dotnet">\r
+ <icon>Tizen.MediaPlayer.Tests.png</icon>\r
+ <label>Tizen.MediaPlayer.Tests</label>\r
+ </service-application>\r
<privileges>\r
<privilege>http://tizen.org/privilege/internet</privilege>\r
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>\r
-/*
- * Copyright (c) 2016 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
-}
\ No newline at end of file
+}
+
\r
<!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
<ProjectReference Include="..\Tizen.Multimedia.Support.Library\Tizen.Multimedia.Support.Library.csproj" />\r
</ItemGroup>\r
\r
<?xml version="1.0" encoding="utf-8"?>
<manifest package="Tizen.MediaVision.Tests" version="1.0.0" api-version="8" xmlns="http://tizen.org/ns/packages">
<profile name="common" />
- <ui-application appid="Tizen.MediaVision.Tests" exec="Tizen.MediaVision.Tests.dll" multiple="false" taskmanage="true" type="dotnet" launch_mode="single">
+ <service-application appid="Tizen.MediaVision.Tests" exec="Tizen.MediaVision.Tests.dll" type="dotnet">
<icon>Tizen.MediaVision.Tests.png</icon>
<label>Tizen.MediaVision.Tests</label>
<splash-screens />
- </ui-application>
+ </service-application>
<shortcut-list />
<privileges>
<privilege>http://tizen.org/privilege/mediastorage</privilege>
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />\r
</ItemGroup>\r
\r
- <!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
</ItemGroup>\r
\r
+ <!-- Include Nuget Package for Tizen Project building -->\r
+\r
</Project>\r
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Mediacontent.Tests" version="1.0.0">
<profile name="common" />
- <ui-application appid="Tizen.Mediacontent.Tests"
- exec="Tizen.Mediacontent.Tests.dll"
- type="dotnet"
- multiple="false"
- taskmanage="true"
- launch_mode="single">
+ <service-application appid="Tizen.Mediacontent.Tests" exec="Tizen.Mediacontent.Tests.dll" type="dotnet">
<icon>Tizen.Mediacontent.Tests.png</icon>
<label>Tizen.Mediacontent.Tests</label>
- </ui-application>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/content.write</privilege>
<privilege>http://tizen.org/privilege/mediastorage</privilege>
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />\r
</ItemGroup>\r
\r
- <!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
</ItemGroup>\r
\r
+ <!-- Include Nuget Package for Tizen Project building -->\r
+\r
</Project>\r
<?xml version="1.0" encoding="utf-8"?>\r
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Messages.Tests" version="1.0.0">\r
<profile name="common" />\r
- <ui-application appid="Tizen.Messages.Tests"\r
- exec="Tizen.Messages.Tests.dll"\r
- type="dotnet"\r
- multiple="false"\r
- taskmanage="true"\r
- launch_mode="single">\r
- <icon>Tizen.Messages.Tests.png</icon>\r
- <label>Tizen.Messages.Tests</label>\r
- </ui-application>\r
+ <service-application appid="Tizen.Messages.Tests" exec="Tizen.Messages.Tests.dll" type="dotnet">\r
+ <icon>Tizen.Messages.Tests.png</icon>\r
+ <label>Tizen.Messages.Tests</label>\r
+ </service-application>\r
<privileges>\r
<privilege>http://tizen.org/privilege/message.read</privilege>\r
<privilege>http://tizen.org/privilege/message.write</privilege>\r
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
\r
<!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
<ProjectReference Include="..\Tizen.Multimedia.Support.Library\Tizen.Multimedia.Support.Library.csproj" />\r
</ItemGroup>\r
\r
<?xml version="1.0" encoding="utf-8"?>\r
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Metadata.Tests" version="1.0.0">\r
<profile name="common" />\r
- <ui-application appid="Tizen.Metadata.Tests"\r
- exec="Tizen.Metadata.Tests.dll"\r
- type="dotnet"\r
- multiple="false"\r
- taskmanage="true"\r
- launch_mode="single">\r
- <icon>Tizen.Metadata.Tests.png</icon>\r
- <label>Tizen.Metadata.Tests</label>\r
- </ui-application>\r
+ <service-application appid="Tizen.Metadata.Tests" exec="Tizen.Metadata.Tests.dll" type="dotnet">\r
+ <icon>Tizen.Metadata.Tests.png</icon>\r
+ <label>Tizen.Metadata.Tests</label>\r
+ </service-application>\r
<privileges>\r
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>\r
</privileges>\r
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />\r
</ItemGroup>\r
\r
- <!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
</ItemGroup>\r
\r
+ <!-- Include Nuget Package for Tizen Project building -->\r
+\r
</Project>\r
<?xml version="1.0" encoding="utf-8"?>\r
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Mime.Tests" version="1.0.0">\r
<profile name="common" />\r
- <ui-application appid="Tizen.Mime.Tests"\r
- exec="Tizen.Mime.Tests.dll"\r
- type="dotnet"\r
- multiple="false"\r
- taskmanage="true"\r
- launch_mode="single">\r
+ <service-application appid="Tizen.Mime.Tests" exec="Tizen.Mime.Tests.dll" type="dotnet">\r
<icon>Tizen.Mime.Tests.png</icon>\r
<label>Tizen.Mime.Tests</label>\r
- </ui-application>\r
+ </service-application>\r
<privileges>\r
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>\r
</privileges>\r
-/*
- * Copyright (c) 2016 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
-}
\ No newline at end of file
+}
+
\r
<!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
<ProjectReference Include="..\Tizen.Multimedia.Support.Library\Tizen.Multimedia.Support.Library.csproj" />\r
</ItemGroup>\r
\r
<?xml version="1.0" encoding="utf-8"?>\r
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Multimedia.Tests" version="1.0.0">\r
<profile name="common" />\r
- <ui-application appid="Tizen.Multimedia.Tests"\r
- exec="Tizen.Multimedia.Tests.dll"\r
- type="dotnet"\r
- multiple="false"\r
- taskmanage="true"\r
- launch_mode="single">\r
+ <service-application appid="Tizen.Multimedia.Tests" exec="Tizen.Multimedia.Tests.dll" type="dotnet">\r
<icon>Tizen.Multimedia.Tests.png</icon>\r
<label>Tizen.Multimedia.Tests</label>\r
- </ui-application>\r
+ </service-application>\r
<privileges>\r
<privilege>http://tizen.org/privilege/volume.set</privilege>\r
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>\r
-/*
- * Copyright (c) 2016 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
-}
\ No newline at end of file
+}
+
\r
<!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
<ProjectReference Include="..\Tizen.Multimedia.Support.Library\Tizen.Multimedia.Support.Library.csproj" />\r
</ItemGroup>\r
\r
<?xml version="1.0" encoding="utf-8"?>\r
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.MultimediaUtil.Tests" version="1.0.0">\r
<profile name="common" />\r
- <ui-application appid="Tizen.MultimediaUtil.Tests"\r
- exec="Tizen.MultimediaUtil.Tests.dll"\r
- type="dotnet"\r
- multiple="false"\r
- taskmanage="true"\r
- launch_mode="single">\r
+ <service-application appid="Tizen.MultimediaUtil.Tests" exec="Tizen.MultimediaUtil.Tests.dll" type="dotnet">\r
<icon>Tizen.MultimediaUtil.Tests.png</icon>\r
<label>Tizen.MultimediaUtil.Tests</label>\r
- </ui-application>\r
+ </service-application>\r
<privileges>\r
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>\r
</privileges>\r
-/*
- * Copyright (c) 2019 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
}
+
<!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
</ItemGroup>
</Project>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Network.Stc.Tests" version="1.0.0">
<profile name="common" />
- <ui-application appid="Tizen.Network.Stc.Tests"
- exec="Tizen.Network.Stc.Tests.dll"
- type="dotnet"
- multiple="false"
- taskmanage="true"
- launch_mode="single">
+ <service-application appid="Tizen.Network.Stc.Tests" exec="Tizen.Network.Stc.Tests.dll" type="dotnet">
<icon>Tizen.Network.Stc.Tests.png</icon>
<label>Tizen.Network.Stc.Tests</label>
- </ui-application>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/network.get</privilege>
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>
-/*
- * Copyright (c) 2016 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
-}
\ No newline at end of file
+}
+
\r
<!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
</ItemGroup>\r
\r
</Project>\r
<?xml version="1.0" encoding="utf-8"?>\r
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Nfc.Tests" version="1.0.0">\r
<profile name="common" />\r
- <ui-application appid="Tizen.Nfc.Tests"\r
- exec="Tizen.Nfc.Tests.dll"\r
- type="dotnet"\r
- multiple="false"\r
- taskmanage="true"\r
- launch_mode="single">\r
+ <service-application appid="Tizen.Nfc.Tests" exec="Tizen.Nfc.Tests.dll" type="dotnet">\r
<icon>Tizen.Nfc.Tests.png</icon>\r
<label>Tizen.Nfc.Tests</label>\r
- </ui-application>\r
+ </service-application>\r
<privileges>\r
<privilege>http://tizen.org/privilege/nfc</privilege>\r
<privilege>http://tizen.org/privilege/nfc.cardemulation</privilege>\r
-/*
- * Copyright (c) 2018 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
}
+
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />\r
</ItemGroup>\r
\r
- <!-- Include Nuget Package for Tizen Project building -->\r
<ItemGroup>\r
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />\r
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />\r
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />\r
</ItemGroup>\r
\r
+ <!-- Include Nuget Package for Tizen Project building -->\r
+\r
</Project>\r
<?xml version="1.0" encoding="utf-8"?>\r
<manifest package="Tizen.Nlp.Tests" version="1.0.0" api-version="8" xmlns="http://tizen.org/ns/packages">\r
<profile name="common" />\r
- <ui-application appid="Tizen.Nlp.Tests" exec="Tizen.Nlp.Tests.dll" multiple="false" taskmanage="true" splash-screen-display="true" type="dotnet" launch_mode="single">\r
+ <service-application appid="Tizen.Nlp.Tests" exec="Tizen.Nlp.Tests.dll" type="dotnet">\r
<icon>Tizen.Nlp.Tests.png</icon>\r
<label>Tizen.Nlp.Tests</label>\r
<splash-screens />\r
- </ui-application>\r
+ </service-application>\r
<shortcut-list />\r
<privileges>\r
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>\r
-/*
- * Copyright (c) 2016 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
-}
\ No newline at end of file
+}
+
<!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
</ItemGroup>
</Project>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Nsd.Tests" version="1.0.0">
<profile name="common" />
- <ui-application appid="Tizen.Nsd.Tests"
- exec="Tizen.Nsd.Tests.dll"
- type="dotnet"
- multiple="false"
- taskmanage="true"
- launch_mode="single">
+ <service-application appid="Tizen.Nsd.Tests" exec="Tizen.Nsd.Tests.dll" type="dotnet">
<icon>Tizen.Nsd.Tests.png</icon>
<label>Tizen.Nsd.Tests</label>
- </ui-application>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/internet</privilege>
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />
</ItemGroup>
- <!-- Include Nuget Package for Tizen Project building -->
- <ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ItemGroup>
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
</ItemGroup>
+ <!-- Include Nuget Package for Tizen Project building -->
+
</Project>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.OAuth2.Tests" version="1.0.0">
<profile name="common" />
- <ui-application appid="Tizen.OAuth2.Tests"
- exec="Tizen.OAuth2.Tests.dll"
- type="dotnet"
- multiple="false"
- taskmanage="true"
- launch_mode="single">
- <icon>Tizen.OAuth2.Tests.png</icon>
- <label>Tizen.OAuth2.Tests</label>
- </ui-application>
+ <service-application appid="Tizen.OAuth2.Tests" exec="Tizen.OAuth2.Tests.dll" type="dotnet">
+ <icon>Tizen.OAuth2.Tests.png</icon>
+ <label>Tizen.OAuth2.Tests</label>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>
<privilege>http://tizen.org/privilege/internet</privilege>
* See the License for the specific language governing permissions and
* limitations under the License
*/
-
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />
</ItemGroup>
- <!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
</ItemGroup>
+ <!-- Include Nuget Package for Tizen Project building -->
+
</Project>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Packagemanager.Tests" version="1.0.0">
<profile name="common" />
- <ui-application appid="Tizen.Packagemanager.Tests"
- exec="Tizen.Packagemanager.Tests.dll"
- type="dotnet"
- multiple="false"
- taskmanage="true"
- launch_mode="single">
+ <service-application appid="Tizen.Packagemanager.Tests" exec="Tizen.Packagemanager.Tests.dll" type="dotnet">
<icon>Tizen.Packagemanager.Tests.png</icon>
<label>Tizen.Packagemanager.Tests</label>
- </ui-application>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/packagemanager.info</privilege>
<privilege>http://tizen.org/privilege/packagemanager.clearcache</privilege>
-/*
- * Copyright (c) 2016 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
-}
\ No newline at end of file
+}
+
<!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
</ItemGroup>
</Project>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.PhonenumberUtils.Tests" version="1.0.0">
<profile name="common" />
- <ui-application appid="Tizen.PhonenumberUtils.Tests"
- exec="Tizen.PhonenumberUtils.Tests.dll"
- type="dotnet"
- multiple="false"
- taskmanage="true"
- launch_mode="single">
+ <service-application appid="Tizen.PhonenumberUtils.Tests" exec="Tizen.PhonenumberUtils.Tests.dll" type="dotnet">
<icon>Tizen.PhonenumberUtils.Tests.png</icon>
<label>Tizen.PhonenumberUtils.Tests</label>
- </ui-application>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/telephony</privilege>
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>
-/*
- * Copyright (c) 2016 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
-}
\ No newline at end of file
+}
+
<!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
</ItemGroup>
</Project>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Privilege.Tests" version="1.0.0">
<profile name="common" />
- <ui-application appid="Tizen.Privilege.Tests"
- exec="Tizen.Privilege.Tests.dll"
- type="dotnet"
- multiple="false"
- taskmanage="true"
- launch_mode="single">
+ <service-application appid="Tizen.Privilege.Tests" exec="Tizen.Privilege.Tests.dll" type="dotnet">
<icon>Tizen.Privilege.Tests.png</icon>
<label>Tizen.Privilege.Tests</label>
- </ui-application>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/account.read</privilege>
<privilege>http://tizen.org/privilege/contact.read</privilege>
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />
</ItemGroup>
- <!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
</ItemGroup>
+ <!-- Include Nuget Package for Tizen Project building -->
+
</Project>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Push.Tests" version="1.0.0">
<profile name="common" />
- <ui-application appid="Tizen.Push.Tests"
- exec="Tizen.Push.Tests.dll"
- type="dotnet"
- multiple="false"
- taskmanage="true"
- launch_mode="single">
+ <service-application appid="Tizen.Push.Tests" exec="Tizen.Push.Tests.dll" type="dotnet">
<icon>Tizen.Push.Tests.png</icon>
<label>Tizen.Push.Tests</label>
- </ui-application>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/push</privilege>
<privilege>http://tizen.org/privilege/internet</privilege>
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
<!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
<ProjectReference Include="..\Tizen.Multimedia.Support.Library\Tizen.Multimedia.Support.Library.csproj" />
</ItemGroup>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Radio.Tests" version="1.0.0">
<profile name="common" />
- <ui-application appid="Tizen.Radio.Tests"
- exec="Tizen.Radio.Tests.dll"
- type="dotnet"
- multiple="false"
- taskmanage="true"
- launch_mode="single">
- <icon>Tizen.Radio.Tests.png</icon>
- <label>Tizen.Radio.Tests</label>
- </ui-application>
+ <service-application appid="Tizen.Radio.Tests" exec="Tizen.Radio.Tests.dll" type="dotnet">
+ <icon>Tizen.Radio.Tests.png</icon>
+ <label>Tizen.Radio.Tests</label>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>
</privileges>
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
<!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
<ProjectReference Include="..\Tizen.Multimedia.Support.Library\Tizen.Multimedia.Support.Library.csproj" />
</ItemGroup>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Recorder.Tests" version="1.0.0">
<profile name="common" />
- <ui-application appid="Tizen.Recorder.Tests"
- exec="Tizen.Recorder.Tests.dll"
- type="dotnet"
- multiple="false"
- taskmanage="true"
- launch_mode="single">
- <icon>Tizen.Recorder.Tests.png</icon>
- <label>Tizen.Recorder.Tests</label>
- </ui-application>
+ <service-application appid="Tizen.Recorder.Tests" exec="Tizen.Recorder.Tests.dll" type="dotnet">
+ <icon>Tizen.Recorder.Tests.png</icon>
+ <label>Tizen.Recorder.Tests</label>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/recorder</privilege>
<privilege>http://tizen.org/privilege/camera</privilege>
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
<!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
<ProjectReference Include="..\Tizen.Multimedia.Support.Library\Tizen.Multimedia.Support.Library.csproj" />
</ItemGroup>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.ScreenMirroring.Tests" version="1.0.0">
<profile name="common" />
- <ui-application appid="Tizen.ScreenMirroring.Tests"
- exec="Tizen.ScreenMirroring.Tests.dll"
- type="dotnet"
- multiple="false"
- taskmanage="true"
- launch_mode="single">
- <icon>Tizen.ScreenMirroring.Tests.png</icon>
- <label>Tizen.ScreenMirroring.Tests</label>
- </ui-application>
+ <service-application appid="Tizen.ScreenMirroring.Tests" exec="Tizen.ScreenMirroring.Tests.dll" type="dotnet">
+ <icon>Tizen.ScreenMirroring.Tests.png</icon>
+ <label>Tizen.ScreenMirroring.Tests</label>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>
</privileges>
-/*
- * Copyright (c) 2016 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
-}
\ No newline at end of file
+}
+
<!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
</ItemGroup>
</Project>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Securerepository.Tests" version="1.0.0">
<profile name="common" />
- <ui-application appid="Tizen.Securerepository.Tests"
- exec="Tizen.Securerepository.Tests.dll"
- type="dotnet"
- multiple="false"
- taskmanage="true"
- launch_mode="single">
+ <service-application appid="Tizen.Securerepository.Tests" exec="Tizen.Securerepository.Tests.dll" type="dotnet">
<icon>Tizen.Securerepository.Tests.png</icon>
<label>Tizen.Securerepository.Tests</label>
- </ui-application>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>
<privilege>http://tizen.org/privilege/internet</privilege>
-/*
- * Copyright (c) 2016 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
-}
\ No newline at end of file
+}
+
<!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
</ItemGroup>
</Project>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Sensor.Tests" version="1.0.0">
<profile name="common" />
- <ui-application appid="Tizen.Sensor.Tests"
- exec="Tizen.Sensor.Tests.dll"
- type="dotnet"
- multiple="false"
- taskmanage="true"
- launch_mode="single">
+ <service-application appid="Tizen.Sensor.Tests" exec="Tizen.Sensor.Tests.dll" type="dotnet">
<icon>Tizen.Sensor.Tests.png</icon>
<label>Tizen.Sensor.Tests</label>
- </ui-application>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/healthinfo</privilege>
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>
-/*
- * Copyright (c) 2016 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
-}
\ No newline at end of file
+}
+
<!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
</ItemGroup>
</Project>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Smartcard.Tests" version="1.0.0">
<profile name="common" />
- <ui-application appid="Tizen.Smartcard.Tests"
- exec="Tizen.Smartcard.Tests.dll"
- type="dotnet"
- multiple="false"
- taskmanage="true"
- launch_mode="single">
+ <service-application appid="Tizen.Smartcard.Tests" exec="Tizen.Smartcard.Tests.dll" type="dotnet">
<icon>Tizen.Smartcard.Tests.png</icon>
<label>Tizen.Smartcard.Tests</label>
- </ui-application>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/secureelement</privilege>
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>
-/*
- * Copyright (c) 2016 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
-}
\ No newline at end of file
+}
+
<!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
<ProjectReference Include="..\Tizen.Multimedia.Support.Library\Tizen.Multimedia.Support.Library.csproj" />
</ItemGroup>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.StreamRecorder.Tests" version="1.0.0">
<profile name="common" />
- <ui-application appid="Tizen.StreamRecorder.Tests"
- exec="Tizen.StreamRecorder.Tests.dll"
- type="dotnet"
- multiple="false"
- taskmanage="true"
- launch_mode="single">
+ <service-application appid="Tizen.StreamRecorder.Tests" exec="Tizen.StreamRecorder.Tests.dll" type="dotnet">
<icon>Tizen.StreamRecorder.Tests.png</icon>
<label>Tizen.StreamRecorder.Tests</label>
- </ui-application>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>
</privileges>
-/*
- * Copyright (c) 2016 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
-}
\ No newline at end of file
+}
+
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />
</ItemGroup>
- <!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
</ItemGroup>
+ <!-- Include Nuget Package for Tizen Project building -->
+
</Project>
<?xml version="1.0" encoding="utf-8"?>
<manifest package="Tizen.Stt.Tests" version="1.0.0" api-version="8" xmlns="http://tizen.org/ns/packages">
<profile name="common" />
- <ui-application appid="Tizen.Stt.Tests" exec="Tizen.Stt.Tests.dll" multiple="false" taskmanage="true" splash-screen-display="true" type="dotnet" launch_mode="single">
+ <service-application appid="Tizen.Stt.Tests" exec="Tizen.Stt.Tests.dll" type="dotnet">
<icon>Tizen.Stt.Tests.png</icon>
<label>Tizen.Stt.Tests</label>
- </ui-application>
+ </service-application>
<shortcut-list />
<privileges>
<privilege>http://tizen.org/privilege/recorder</privilege>
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />
</ItemGroup>
- <!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
</ItemGroup>
+ <!-- Include Nuget Package for Tizen Project building -->
+
</Project>
<?xml version="1.0" encoding="utf-8"?>
<manifest package="Tizen.SyncManager.Tests" version="1.0.0" api-version="8" xmlns="http://tizen.org/ns/packages">
<profile name="common" />
- <service-application appid="Tizen.SyncManager.Tests" exec="Tizen.SyncManager.Tests.dll" multiple="false" taskmanage="true" splash-screen-display="true" type="dotnet" launch_mode="single">
+ <service-application appid="Tizen.SyncManager.Tests" exec="Tizen.SyncManager.Tests.dll" type="dotnet">
<icon>Tizen.SyncManager.Tests.png</icon>
<label>Tizen.SyncManager.Tests</label>
</service-application>
-/*
- * Copyright (c) 2016 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
-}
\ No newline at end of file
+}
+
<!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
</ItemGroup>
</Project>
<?xml version="1.0" encoding="utf-8"?>\r
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.System.Tests" version="1.0.0">\r
<profile name="common" />\r
- <ui-application appid="Tizen.System.Tests"\r
- exec="Tizen.System.Tests.dll"\r
- type="dotnet"\r
- multiple="false"\r
- taskmanage="true"\r
- launch_mode="single">\r
+ <service-application appid="Tizen.System.Tests" exec="Tizen.System.Tests.dll" type="dotnet">\r
<icon>Tizen.System.Tests.png</icon>\r
<label>Tizen.System.Tests</label>\r
- </ui-application>\r
+ </service-application>\r
<privileges>\r
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>\r
</privileges>\r
-/*
- * Copyright (c) 2016 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
-}
\ No newline at end of file
+}
+
<!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
</ItemGroup>
</Project>
<?xml version="1.0" encoding="utf-8"?>\r
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Systemsettings.Tests" version="1.0.0">\r
<profile name="common" />\r
- <ui-application appid="Tizen.Systemsettings.Tests"\r
- exec="Tizen.Systemsettings.Tests.dll"\r
- type="dotnet"\r
- multiple="false"\r
- taskmanage="true"\r
- launch_mode="single">\r
+ <service-application appid="Tizen.Systemsettings.Tests" exec="Tizen.Systemsettings.Tests.dll" type="dotnet">\r
<icon>Tizen.Systemsettings.Tests.png</icon>\r
<label>Tizen.Systemsettings.Tests</label>\r
- </ui-application>\r
+ </service-application>\r
<privileges>\r
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>\r
</privileges>\r
-/*
- * Copyright (c) 2016 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
-}
\ No newline at end of file
+}
+
<!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
</ItemGroup>
</Project>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.TEEC.Tests" version="1.0.0">
<profile name="common" />
- <ui-application appid="Tizen.TEEC.Tests"
- exec="Tizen.TEEC.Tests.dll"
- type="dotnet"
- multiple="false"
- taskmanage="true"
- launch_mode="single">
+ <service-application appid="Tizen.TEEC.Tests" exec="Tizen.TEEC.Tests.dll" type="dotnet">
<icon>Tizen.TEEC.Tests.png</icon>
<label>Tizen.TEEC.Tests</label>
- </ui-application>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>
</privileges>
-/*
- * Copyright (c) 2016 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
-}
\ No newline at end of file
+}
+
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />
</ItemGroup>
- <!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
</ItemGroup>
+ <!-- Include Nuget Package for Tizen Project building -->
+
</Project>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Telephony.Tests" version="1.0.0">
<profile name="common" />
- <ui-application appid="Tizen.Telephony.Tests"
- exec="Tizen.Telephony.Tests.dll"
- type="dotnet"
- multiple="false"
- taskmanage="true"
- launch_mode="single">
+ <service-application appid="Tizen.Telephony.Tests" exec="Tizen.Telephony.Tests.dll" type="dotnet">
<icon>Tizen.Telephony.Tests.png</icon>
<label>Tizen.Telephony.Tests</label>
- </ui-application>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>
<privilege>http://tizen.org/privilege/telephony</privilege>
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />
</ItemGroup>
- <!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
</ItemGroup>
+ <!-- Include Nuget Package for Tizen Project building -->
+
</Project>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.ToastMessage.Tests" version="1.0.0">
<profile name="common" />
- <ui-application appid="Tizen.ToastMessage.Tests"
- exec="Tizen.ToastMessage.Tests.dll"
- type="dotnet"
- multiple="false"
- taskmanage="true"
- launch_mode="single">
- <icon>Tizen.ToastMessage.Tests.png</icon>
- <label>Tizen.ToastMessage.Tests</label>
- </ui-application>
+ <service-application appid="Tizen.ToastMessage.Tests" exec="Tizen.ToastMessage.Tests.dll" type="dotnet">
+ <icon>Tizen.ToastMessage.Tests.png</icon>
+ <label>Tizen.ToastMessage.Tests</label>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>
- </privileges>
+ </privileges>
</manifest>
using System;
using NUnitLite.TUnit;
-using AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />
</ItemGroup>
- <!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
</ItemGroup>
+ <!-- Include Nuget Package for Tizen Project building -->
+
</Project>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Tracer.Tests" version="1.0.0">
<profile name="common" />
- <ui-application appid="Tizen.Tracer.Tests"
- exec="Tizen.Tracer.Tests.dll"
- type="dotnet"
- multiple="false"
- taskmanage="true"
- launch_mode="single">
- <icon>Tizen.Tracer.Tests.png</icon>
- <label>Tizen.Tracer.Tests</label>
- </ui-application>
+ <service-application appid="Tizen.Tracer.Tests" exec="Tizen.Tracer.Tests.dll" type="dotnet">
+ <icon>Tizen.Tracer.Tests.png</icon>
+ <label>Tizen.Tracer.Tests</label>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>
</privileges>
-/*
- * Copyright (c) 2016 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
-}
\ No newline at end of file
+}
+
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />
</ItemGroup>
- <!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
</ItemGroup>
+ <!-- Include Nuget Package for Tizen Project building -->
+
</Project>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Tts.Tests" version="1.0.0">
<profile name="common" />
- <ui-application appid="Tizen.Tts.Tests"
- exec="Tizen.Tts.Tests.dll"
- type="dotnet"
- multiple="false"
- taskmanage="true"
- launch_mode="single">
+ <service-application appid="Tizen.Tts.Tests" exec="Tizen.Tts.Tests.dll" type="dotnet">
<icon>Tizen.Tts.Tests.png</icon>
<label>Tizen.Tts.Tests</label>
- </ui-application>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/recorder</privilege>
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>
-/*
- * Copyright (c) 2018 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
}
+
<!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
</ItemGroup>
</Project>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Usb.Tests" version="1.0.0">
<profile name="common" />
- <ui-application appid="Tizen.Usb.Tests"
- exec="Tizen.Usb.Tests.dll"
- type="dotnet"
- multiple="false"
- taskmanage="true"
- launch_mode="single">
+ <service-application appid="Tizen.Usb.Tests" exec="Tizen.Usb.Tests.dll" type="dotnet">
<icon>Tizen.Usb.Tests.png</icon>
<label>Tizen.Usb.Tests</label>
- </ui-application>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>
</privileges>
-/*
- * Copyright (c) 2016 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
-}
\ No newline at end of file
+}
+
<PackageReference Include="Tizen.NET.Sdk" Version="$(TizenNETSdkVersion)" />
</ItemGroup>
- <!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
</ItemGroup>
+ <!-- Include Nuget Package for Tizen Project building -->
+
</Project>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.VoiceControl.Tests" version="1.0.0">
<profile name="common" />
- <ui-application appid="Tizen.VoiceControl.Tests"
- exec="Tizen.VoiceControl.Tests.dll"
- type="dotnet"
- multiple="false"
- taskmanage="true"
- launch_mode="single">
+ <service-application appid="Tizen.VoiceControl.Tests" exec="Tizen.VoiceControl.Tests.dll" type="dotnet">
<icon>Tizen.VoiceControl.Tests.png</icon>
<label>Tizen.VoiceControl.Tests</label>
- </ui-application>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/recorder</privilege>
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>
-/*
- * Copyright (c) 2018 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
}
+
<!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
</ItemGroup>
</Project>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.WiFi.Tests" version="1.0.0">
<profile name="common" />
- <ui-application appid="Tizen.WiFi.Tests"
- exec="Tizen.WiFi.Tests.dll"
- type="dotnet"
- multiple="false"
- taskmanage="true"
- launch_mode="single">
+ <service-application appid="Tizen.WiFi.Tests" exec="Tizen.WiFi.Tests.dll" type="dotnet">
<icon>Tizen.WiFi.Tests.png</icon>
<label>Tizen.WiFi.Tests</label>
- </ui-application>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/network.get</privilege>
<privilege>http://tizen.org/privilege/network.set</privilege>
-/*
- * Copyright (c) 2016 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 AutoTemplate;
+using Tizen.Applications;
-namespace XamarinForTizen.Tizen
+namespace TCT.Tizen
{
- class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
+ class Program : ServiceApplication
{
- private static App _app;
protected override void OnCreate()
{
base.OnCreate();
Console.WriteLine("TCT : OnCreate()");
- _app = new App();
- LoadApplication(_app);
TRunner t = new TRunner();
t.LoadTestsuite();
t.Execute();
}
- public static App getApp()
- {
- return _app;
- }
static void Main(string[] args)
{
Console.WriteLine("TCT : Main()");
var app = new Program();
- global::Xamarin.Forms.Forms.Init(app);
app.Run(args);
}
}
-}
\ No newline at end of file
+}
+
<!-- Include Nuget Package for Tizen Project building -->
<ItemGroup>
- <ProjectReference Include="..\Template\AutoTemplate\AutoTemplate.csproj" />
+ <ProjectReference Include="..\nunit.framework\nunit.framework.csproj" />
+ <ProjectReference Include="..\nunitlite\nunitlite.csproj" />
</ItemGroup>
</Project>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="8" package="Tizen.Wifidirect.Tests" version="1.0.0">
<profile name="common" />
- <ui-application appid="Tizen.Wifidirect.Tests"
- exec="Tizen.Wifidirect.Tests.dll"
- type="dotnet"
- multiple="false"
- taskmanage="true"
- launch_mode="single">
+ <service-application appid="Tizen.Wifidirect.Tests" exec="Tizen.Wifidirect.Tests.dll" type="dotnet">
<icon>Tizen.Wifidirect.Tests.png</icon>
<label>Tizen.Wifidirect.Tests</label>
- </ui-application>
+ </service-application>
<privileges>
<privilege>http://tizen.org/privilege/wifidirect</privilege>
<privilege>http://tizen.org/privilege/appmanager.launch</privilege>