summaryrefslogtreecommitdiff
path: root/tct-system-settings-tizen-tests/src/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'tct-system-settings-tizen-tests/src/Program.cs')
-rw-r--r--tct-system-settings-tizen-tests/src/Program.cs37
1 files changed, 0 insertions, 37 deletions
diff --git a/tct-system-settings-tizen-tests/src/Program.cs b/tct-system-settings-tizen-tests/src/Program.cs
deleted file mode 100644
index 6b832cf..0000000
--- a/tct-system-settings-tizen-tests/src/Program.cs
+++ /dev/null
@@ -1,37 +0,0 @@
-using Tizen.Applications;
-
-namespace TestFramework
-{
- public class MyApplication : UIApplication
- {
- protected override void OnCreate()
- {
- Assert.Init();
- TestManager manager = new TestManager();
- manager.RunTestFromTCList();
- }
-
- protected override void OnResume()
- {
- LogUtils.write(LogUtils.DEBUG, LogUtils.INFO, "Resumed!");
- }
-
- protected override void OnPause()
- {
- LogUtils.write(LogUtils.DEBUG, LogUtils.INFO, "Paused!");
- }
-
- protected override void OnTerminate()
- {
- LogUtils.write(LogUtils.DEBUG, LogUtils.INFO, "Terminated!");
- }
- }
- internal class Program
- {
- private static void Main(string[] args)
- {
- MyApplication app = new MyApplication();
- app.Run(args);
- }
- }
-}