[Applications.EventManager] Add TCs for SystemEvents 62/204662/5
authorInkyun Kil <inkyun.kil@samsung.com>
Thu, 25 Apr 2019 08:52:03 +0000 (17:52 +0900)
committerInkyun Kil <inkyun.kil@samsung.com>
Thu, 2 May 2019 01:48:17 +0000 (10:48 +0900)
Change-Id: I18b4c8c4f6691645cfcdfe5a8af409c99be259a4
Signed-off-by: Inkyun Kil <inkyun.kil@samsung.com>
tct-suite-vs/Tizen.Applications.EventManager.Tests/testcase/TSEventManager.SystemEvents.cs [new file with mode: 0755]

diff --git a/tct-suite-vs/Tizen.Applications.EventManager.Tests/testcase/TSEventManager.SystemEvents.cs b/tct-suite-vs/Tizen.Applications.EventManager.Tests/testcase/TSEventManager.SystemEvents.cs
new file mode 100755 (executable)
index 0000000..d224a8a
--- /dev/null
@@ -0,0 +1,1532 @@
+/*
+ *  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 NUnit.Framework;
+using NUnit.Framework.TUnit;
+using System;
+using System.Collections.Generic;
+using System.Threading;
+using System.Threading.Tasks;
+using Tizen;
+using Tizen.Applications;
+using Tizen.Applications.EventManager;
+using Tizen.Applications.EventManager.SystemEvents;
+
+namespace Tizen.Application.EventManager.Tests
+{
+
+    [TestFixture]
+    [Description("Tizen.Application.EventManager.SystemEvents Tests")]
+    public class EventManagerSystemEventsTests
+    {
+        private string LOG_TAG = "ApplicationEvents";
+
+        [SetUp]
+        public void Init()
+        {
+            LogUtils.Write(LogUtils.DEBUG, LOG_TAG, "Preconditions for each TEST");
+        }
+
+        [TearDown]
+        public void Destroy()
+        {
+            LogUtils.Write(LogUtils.DEBUG, LOG_TAG, "Postconditions for each TEST");
+        }
+
+        [Test]
+        [Category("P1")]
+        [Description("Get property EventName of SystemEvents.BatteryChargerStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.BatteryChargerStatus.EventName A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void EventName_BatteryChargerStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(BatteryChargerStatus.EventName);
+            Assert.AreEqual(BatteryChargerStatus.EventName, "tizen.system.event.battery_charger_status", "Value should be 'tizen.system.event.battery_charger_status'");
+        }
+
+        [Test]
+        [Category("P1")]
+        [Description("Get property StatusKey of SystemEvents.BatteryChargerStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.BatteryChargerStatus.StatusKey A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StatusKey_BatteryChargerStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(BatteryChargerStatus.StatusKey);
+            Assert.AreEqual(BatteryChargerStatus.StatusKey, "battery_charger_status", "Value should be 'battery_charger_status'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StatusValueConnected of SystemEvents.BatteryChargerStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.BatteryChargerStatus.StatusValueConnected A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StatusValueConnected_BatteryChargerStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(BatteryChargerStatus.StatusValueConnected);
+            Assert.AreEqual(BatteryChargerStatus.StatusValueConnected, "connected", "Value should be 'connected'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StatusValueDisconnected of SystemEvents.BatteryChargerStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.BatteryChargerStatus.StatusValueDisconnected A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StatusValueDisconnected_BatteryChargerStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(BatteryChargerStatus.StatusValueDisconnected);
+            Assert.AreEqual(BatteryChargerStatus.StatusValueDisconnected, "disconnected", "Value should be 'disconnected'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StatusValueCharging of SystemEvents.BatteryChargerStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.BatteryChargerStatus.StatusValueCharging A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StatusValueCharging_BatteryChargerStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(BatteryChargerStatus.StatusValueCharging);
+            Assert.AreEqual(BatteryChargerStatus.StatusValueCharging, "charging", "Value should be 'charging'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StatusValueDischarging of SystemEvents.BatteryChargerStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.BatteryChargerStatus.StatusValueDischarging A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StatusValueDischarging_BatteryChargerStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(BatteryChargerStatus.StatusValueDischarging);
+            Assert.AreEqual(BatteryChargerStatus.StatusValueDischarging, "discharging", "Value should be 'discharging'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property EventName of SystemEvents.AutoRotateState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.AutoRotateState.EventName A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void EventName_AutoRotateState_GET()
+        {
+            Assert.IsInstanceOf<string>(AutoRotateState.EventName);
+            Assert.AreEqual(AutoRotateState.EventName, "tizen.system.event.autorotate_state", "Value should be 'tizen.system.event.autorotate_state'");
+        }
+
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateKey of SystemEvents.AutoRotateState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.AutoRotateState.StateKey A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateKey_AutoRotateState_GET()
+        {
+            Assert.IsInstanceOf<string>(AutoRotateState.StateKey);
+            Assert.AreEqual(AutoRotateState.StateKey, "autorotate_state", "Value should be 'autorotate_state'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateOn of SystemEvents.AutoRotateState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.AutoRotateState.StateOn A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateOn_AutoRotateState_GET()
+        {
+            Assert.IsInstanceOf<string>(AutoRotateState.StateOn);
+            Assert.AreEqual(AutoRotateState.StateOn, "on", "Value should be 'on'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateOff of SystemEvents.AutoRotateState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.AutoRotateState.StateOff A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateOff_AutoRotateState_GET()
+        {
+            Assert.IsInstanceOf<string>(AutoRotateState.StateOff);
+            Assert.AreEqual(AutoRotateState.StateOff, "off", "Value should be 'off'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property EventName of SystemEvents.BatteryLevelStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.BatteryLevelStatus.EventName A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void EventName_BatteryLevelStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(BatteryLevelStatus.EventName);
+            Assert.AreEqual(BatteryLevelStatus.EventName, "tizen.system.event.battery_level_status", "Value should be 'tizen.system.event.battery_level_status'");
+        }
+
+        [Test]
+        [Category("P1")]
+        [Description("Get property StatusKey of SystemEvents.BatteryLevelStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.BatteryLevelStatus.StatusKey A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StatusKey_BatteryLevelStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(BatteryLevelStatus.StatusKey);
+            Assert.AreEqual(BatteryLevelStatus.StatusKey, "battery_level_status", "Value should be 'battery_level_status'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StatusValueEmpty of SystemEvents.BatteryLevelStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.BatteryLevelStatus.StatusValueEmpty A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StatusValueEmpty_BatteryLevelStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(BatteryLevelStatus.StatusValueEmpty);
+            Assert.AreEqual(BatteryLevelStatus.StatusValueEmpty, "empty", "Value should be 'empty'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StatusValueCritical of SystemEvents.BatteryLevelStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.BatteryLevelStatus.StatusValueCritical A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StatusValueCritical_BatteryLevelStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(BatteryLevelStatus.StatusValueCritical);
+            Assert.AreEqual(BatteryLevelStatus.StatusValueCritical, "critical", "Value should be 'critical'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StatusValueLow of SystemEvents.BatteryLevelStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.BatteryLevelStatus.StatusValueLow A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StatusValueLow_BatteryLevelStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(BatteryLevelStatus.StatusValueLow);
+            Assert.AreEqual(BatteryLevelStatus.StatusValueLow, "low", "Value should be 'low'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StatusValueHigh of SystemEvents.BatteryLevelStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.BatteryLevelStatus.StatusValueHigh A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StatusValueHigh_BatteryLevelStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(BatteryLevelStatus.StatusValueHigh);
+            Assert.AreEqual(BatteryLevelStatus.StatusValueHigh, "high", "Value should be 'high'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StatusValueFull of SystemEvents.BatteryLevelStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.BatteryLevelStatus.StatusValueFull A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StatusValueFull_BatteryLevelStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(BatteryLevelStatus.StatusValueFull);
+            Assert.AreEqual(BatteryLevelStatus.StatusValueFull, "full", "Value should be 'full'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property EventName of SystemEvents.BootCompleted")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.BootCompleted.EventName A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void EventName_BootCompleted_GET()
+        {
+            Assert.IsInstanceOf<string>(BootCompleted.EventName);
+            Assert.AreEqual(BootCompleted.EventName, "tizen.system.event.boot_completed", "Value should be 'tizen.system.event.boot_completed'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property EventName of SystemEvents.Btstate")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.Btstate.EventName A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void EventName_Btstate_GET()
+        {
+            Assert.IsInstanceOf<string>(Btstate.EventName);
+            Assert.AreEqual(Btstate.EventName, "tizen.system.event.bt_state", "Value should be 'tizen.system.event.bt_state'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateKey of SystemEvents.Btstate")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.Btstate.StateKey A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateKey_Btstate_GET()
+        {
+            Assert.IsInstanceOf<string>(Btstate.StateKey);
+            Assert.AreEqual(Btstate.StateKey, "bt_state", "Value should be 'bt_state'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateValueOff of SystemEvents.Btstate")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.Btstate.StateValueOff A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateValueOff_Btstate_GET()
+        {
+            Assert.IsInstanceOf<string>(Btstate.StateValueOff);
+            Assert.AreEqual(Btstate.StateValueOff, "off", "Value should be 'off'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateValueOn of SystemEvents.Btstate")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.Btstate.StateValueOn A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateValueOn_Btstate_GET()
+        {
+            Assert.IsInstanceOf<string>(Btstate.StateValueOn);
+            Assert.AreEqual(Btstate.StateValueOn, "on", "Value should be 'on'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property LeStateKey of SystemEvents.Btstate")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.Btstate.LeStateKey A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void LeStateKey_Btstate_GET()
+        {
+            Assert.IsInstanceOf<string>(Btstate.LeStateKey);
+            Assert.AreEqual(Btstate.LeStateKey, "bt_le_state", "Value should be 'bt_le_state'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property LeStateValueOff of SystemEvents.Btstate")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.Btstate.LeStateValueOff A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void LeStateValueOff_Btstate_GET()
+        {
+            Assert.IsInstanceOf<string>(Btstate.LeStateValueOff);
+            Assert.AreEqual(Btstate.LeStateValueOff, "off", "Value should be 'off'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property LeStateValueOn of SystemEvents.Btstate")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.Btstate.LeStateValueOn A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void LeStateValueOn_Btstate_GET()
+        {
+            Assert.IsInstanceOf<string>(Btstate.LeStateValueOn);
+            Assert.AreEqual(Btstate.LeStateValueOn, "on", "Value should be 'on'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property TransferStateKey of SystemEvents.Btstate")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.Btstate.TransferStateKey A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void TransferStateKey_Btstate_GET()
+        {
+            Assert.IsInstanceOf<string>(Btstate.TransferStateKey);
+            Assert.AreEqual(Btstate.TransferStateKey, "bt_transfering_state", "Value should be 'bt_transfering_state'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property TransferStateValueNontransfering of SystemEvents.Btstate")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.Btstate.TransferStateValueNontransfering A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void TransferStateValueNontransfering_Btstate_GET()
+        {
+            Assert.IsInstanceOf<string>(Btstate.TransferStateValueNontransfering);
+            Assert.AreEqual(Btstate.TransferStateValueNontransfering, "non_transfering", "Value should be 'non_transfering'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property TransferStateValueTransfering of SystemEvents.Btstate")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.Btstate.TransferStateValueTransfering A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void TransferStateValueTransfering_Btstate_GET()
+        {
+            Assert.IsInstanceOf<string>(Btstate.TransferStateValueTransfering);
+            Assert.AreEqual(Btstate.TransferStateValueTransfering, "transfering", "Value should be 'transfering'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property EventName of SystemEvents.DataRoamingState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.DataRoamingState.EventName A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void EventName_DataRoamingState_GET()
+        {
+            Assert.IsInstanceOf<string>(DataRoamingState.EventName);
+            Assert.AreEqual(DataRoamingState.EventName, "tizen.system.event.data_roaming_state", "Value should be 'tizen.system.event.data_roaming_state'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateKey of SystemEvents.DataRoamingState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.DataRoamingState.StateKey A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateKey_DataRoamingState_GET()
+        {
+            Assert.IsInstanceOf<string>(DataRoamingState.StateKey);
+            Assert.AreEqual(DataRoamingState.StateKey, "data_roaming_state", "Value should be 'data_roaming_state'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateValueOn of SystemEvents.DataRoamingState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.DataRoamingState.StateValueOn A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateValueOn_DataRoamingState_GET()
+        {
+            Assert.IsInstanceOf<string>(DataRoamingState.StateValueOn);
+            Assert.AreEqual(DataRoamingState.StateValueOn, "on", "Value should be 'on'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateValueOff of SystemEvents.DataRoamingState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.DataRoamingState.StateValueOff A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateValueOff_DataRoamingState_GET()
+        {
+            Assert.IsInstanceOf<string>(DataRoamingState.StateValueOff);
+            Assert.AreEqual(DataRoamingState.StateValueOff, "off", "Value should be 'off'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property EventName of SystemEvents.DisplayState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.DisplayState.EventName A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void EventName_DisplayState_GET()
+        {
+            Assert.IsInstanceOf<string>(DisplayState.EventName);
+            Assert.AreEqual(DisplayState.EventName, "tizen.system.event.display_state", "Value should be 'tizen.system.event.display_state'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateKey of SystemEvents.DisplayState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.DisplayState.StateKey A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateKey_DisplayState_GET()
+        {
+            Assert.IsInstanceOf<string>(DisplayState.StateKey);
+            Assert.AreEqual(DisplayState.StateKey, "display_state", "Value should be 'display_state'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateValueNormal of SystemEvents.DisplayState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.DisplayState.StateValueNormal A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateValueNormal_DisplayState_GET()
+        {
+            Assert.IsInstanceOf<string>(DisplayState.StateValueNormal);
+            Assert.AreEqual(DisplayState.StateValueNormal, "normal", "Value should be 'normal'");
+        }\r
+\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateValueDim of SystemEvents.DisplayState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.DisplayState.StateValueDim A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateValueDim_DisplayState_GET()
+        {
+            Assert.IsInstanceOf<string>(DisplayState.StateValueDim);
+            Assert.AreEqual(DisplayState.StateValueDim, "dim", "Value should be 'dim'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateValueOff of SystemEvents.DisplayState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.DisplayState.StateValueOff A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateValueOff_DisplayState_GET()
+        {
+            Assert.IsInstanceOf<string>(DisplayState.StateValueOff);
+            Assert.AreEqual(DisplayState.StateValueOff, "off", "Value should be 'off'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property EventName of SystemEvents.EarjackStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.EarjackStatus.EventName A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void EventName_EarjackStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(EarjackStatus.EventName);
+            Assert.AreEqual(EarjackStatus.EventName, "tizen.system.event.earjack_status", "Value should be 'tizen.system.event.earjack_status'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StatusKey of SystemEvents.EarjackStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.EarjackStatus.StatusKey A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StatusKey_EarjackStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(EarjackStatus.StatusKey);
+            Assert.AreEqual(EarjackStatus.StatusKey, "earjack_status", "Value should be 'earjack_status'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StatusValueDisconnected of SystemEvents.EarjackStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.EarjackStatus.StatusValueDisconnected A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StatusValueDisconnected_EarjackStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(EarjackStatus.StatusValueDisconnected);
+            Assert.AreEqual(EarjackStatus.StatusValueDisconnected, "disconnected", "Value should be 'disconnected'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StatusValueConnected of SystemEvents.EarjackStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.EarjackStatus.StatusValueConnected A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StatusValueConnected_EarjackStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(EarjackStatus.StatusValueConnected);
+            Assert.AreEqual(EarjackStatus.StatusValueConnected, "connected", "Value should be 'connected'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property EventName of SystemEvents.FontSet")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.FontSet.EventName A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void EventName_FontSet_GET()
+        {
+            Assert.IsInstanceOf<string>(FontSet.EventName);
+            Assert.AreEqual(FontSet.EventName, "tizen.system.event.font_set", "Value should be 'tizen.system.event.font_set'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property Key of SystemEvents.FontSet")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.FontSet.Key A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void Key_FontSet_GET()
+        {
+            Assert.IsInstanceOf<string>(FontSet.Key);
+            Assert.AreEqual(FontSet.Key, "font_set", "Value should be 'font_set'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property EventName of SystemEvents.GpsEnableState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.GpsEnableState.EventName A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void EventName_GpsEnableState_GET()
+        {
+            Assert.IsInstanceOf<string>(GpsEnableState.EventName);
+            Assert.AreEqual(GpsEnableState.EventName, "tizen.system.event.gps_enable_state", "Value should be 'tizen.system.event.gps_enable_state'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateKey of SystemEvents.GpsEnableState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.GpsEnableState.StateKey A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateKey_GpsEnableState_GET()
+        {
+            Assert.IsInstanceOf<string>(GpsEnableState.StateKey);
+            Assert.AreEqual(GpsEnableState.StateKey, "gps_enable_state", "Value should be 'gps_enable_state'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateValueDisabled of SystemEvents.GpsEnableState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.GpsEnableState.StateValueDisabled A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateValueDisabled_GpsEnableState_GET()
+        {
+            Assert.IsInstanceOf<string>(GpsEnableState.StateValueDisabled);
+            Assert.AreEqual(GpsEnableState.StateValueDisabled, "disabled", "Value should be 'disabled'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateValueEnabled of SystemEvents.GpsEnableState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.GpsEnableState.StateValueEnabled A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateValueEnabled_GpsEnableState_GET()
+        {
+            Assert.IsInstanceOf<string>(GpsEnableState.StateValueEnabled);
+            Assert.AreEqual(GpsEnableState.StateValueEnabled, "enabled", "Value should be 'enabled'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property EventName of SystemEvents.HourFormat")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.HourFormat.EventName A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void EventName_HourFormat_GET()
+        {
+            Assert.IsInstanceOf<string>(HourFormat.EventName);
+            Assert.AreEqual(HourFormat.EventName, "tizen.system.event.hour_format", "Value should be 'tizen.system.event.hour_format'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property Key of SystemEvents.HourFormat")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.HourFormat.Key A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void Key_HourFormat_GET()
+        {
+            Assert.IsInstanceOf<string>(HourFormat.Key);
+            Assert.AreEqual(HourFormat.Key, "hour_format", "Value should be 'hour_format'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property Value12 of SystemEvents.HourFormat")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.HourFormat.Value12 A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void Value12_HourFormat_GET()
+        {
+            Assert.IsInstanceOf<string>(HourFormat.Value12);
+            Assert.AreEqual(HourFormat.Value12, "12", "Value should be '12'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property Value24 of SystemEvents.HourFormat")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.HourFormat.Value24 A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void Value24_HourFormat_GET()
+        {
+            Assert.IsInstanceOf<string>(HourFormat.Value24);
+            Assert.AreEqual(HourFormat.Value24, "24", "Value should be '24'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property EventName of SystemEvents.IncomingMsg")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.IncomingMsg.EventName A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void EventName_IncomingMsg_GET()
+        {
+            Assert.IsInstanceOf<string>(IncomingMsg.EventName);
+            Assert.AreEqual(IncomingMsg.EventName, "tizen.system.event.incoming_msg", "Value should be 'tizen.system.event.incoming_msg'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property TypeKey of SystemEvents.IncomingMsg")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.IncomingMsg.TypeKey A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void TypeKey_IncomingMsg_GET()
+        {
+            Assert.IsInstanceOf<string>(IncomingMsg.TypeKey);
+            Assert.AreEqual(IncomingMsg.TypeKey, "msg_type", "Value should be 'msg_type'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property TypeValueSms of SystemEvents.IncomingMsg")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.IncomingMsg.TypeValueSms A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void TypeValueSms_IncomingMsg_GET()
+        {
+            Assert.IsInstanceOf<string>(IncomingMsg.TypeValueSms);
+            Assert.AreEqual(IncomingMsg.TypeValueSms, "sms", "Value should be 'sms'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property TypeValueMms of SystemEvents.IncomingMsg")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.IncomingMsg.TypeValueMms A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void TypeValueMms_IncomingMsg_GET()
+        {
+            Assert.IsInstanceOf<string>(IncomingMsg.TypeValueMms);
+            Assert.AreEqual(IncomingMsg.TypeValueMms, "mms", "Value should be 'mms'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property TypeValuePush of SystemEvents.IncomingMsg")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.IncomingMsg.TypeValuePush A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void TypeValuePush_IncomingMsg_GET()
+        {
+            Assert.IsInstanceOf<string>(IncomingMsg.TypeValuePush);
+            Assert.AreEqual(IncomingMsg.TypeValuePush, "push", "Value should be 'push'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property TypeValueCb of SystemEvents.IncomingMsg")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.IncomingMsg.TypeValueCb A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void TypeValueCb_IncomingMsg_GET()
+        {
+            Assert.IsInstanceOf<string>(IncomingMsg.TypeValueCb);
+            Assert.AreEqual(IncomingMsg.TypeValueCb, "cb", "Value should be 'cb'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property IdKey of SystemEvents.IncomingMsg")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.IncomingMsg.IdKey A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void IdKey_IncomingMsg_GET()
+        {
+            Assert.IsInstanceOf<string>(IncomingMsg.IdKey);
+            Assert.AreEqual(IncomingMsg.IdKey, "msg_id", "Value should be 'msg_id'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property EventName of SystemEvents.LanguageSet")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.LanguageSet.EventName A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void EventName_LanguageSet_GET()
+        {
+            Assert.IsInstanceOf<string>(LanguageSet.EventName);
+            Assert.AreEqual(LanguageSet.EventName, "tizen.system.event.language_set", "Value should be 'tizen.system.event.language_set'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property Key of SystemEvents.LanguageSet")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.LanguageSet.Key A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void Key_LanguageSet_GET()
+        {
+            Assert.IsInstanceOf<string>(LanguageSet.Key);
+            Assert.AreEqual(LanguageSet.Key, "language_set", "Value should be 'language_set'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property EventName of SystemEvents.LocatingEnableState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.LocatingEnableState.EventName A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void EventName_LocatingEnableState_GET()
+        {
+            Assert.IsInstanceOf<string>(LocatingEnableState.EventName);
+            Assert.AreEqual(LocatingEnableState.EventName, "tizen.system.event.location_enable_state", "Value should be 'tizen.system.event.location_enable_state'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateKey of SystemEvents.LocatingEnableState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.LocatingEnableState.StateKey A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateKey_LocatingEnableState_GET()
+        {
+            Assert.IsInstanceOf<string>(LocatingEnableState.StateKey);
+            Assert.AreEqual(LocatingEnableState.StateKey, "location_enable_state", "Value should be 'location_enable_state'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateValueDisabled of SystemEvents.LocatingEnableState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.LocatingEnableState.StateValueDisabled A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateValueDisabled_LocatingEnableState_GET()
+        {
+            Assert.IsInstanceOf<string>(LocatingEnableState.StateValueDisabled);
+            Assert.AreEqual(LocatingEnableState.StateValueDisabled, "disabled", "Value should be 'disabled'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateValueEnabled of SystemEvents.LocatingEnableState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.LocatingEnableState.StateValueEnabled A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateValueEnabled_LocatingEnableState_GET()
+        {
+            Assert.IsInstanceOf<string>(LocatingEnableState.StateValueEnabled);
+            Assert.AreEqual(LocatingEnableState.StateValueEnabled, "enabled", "Value should be 'enabled'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property EventName of SystemEvents.LowMemory")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.LowMemory.EventName A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void EventName_LowMemory_GET()
+        {
+            Assert.IsInstanceOf<string>(LowMemory.EventName);
+            Assert.AreEqual(LowMemory.EventName, "tizen.system.event.low_memory", "Value should be 'tizen.system.event.low_memory'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property Key of SystemEvents.LowMemory")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.LowMemory.Key A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void Key_LowMemory_GET()
+        {
+            Assert.IsInstanceOf<string>(LowMemory.Key);
+            Assert.AreEqual(LowMemory.Key, "low_memory", "Value should be 'low_memory'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property ValueNormal of SystemEvents.LowMemory")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.LowMemory.ValueNormal A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void ValueNormal_LowMemory_GET()
+        {
+            Assert.IsInstanceOf<string>(LowMemory.ValueNormal);
+            Assert.AreEqual(LowMemory.ValueNormal, "normal", "Value should be 'normal'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property ValueSoftWarning of SystemEvents.LowMemory")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.LowMemory.ValueSoftWarning A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void ValueSoftWarning_LowMemory_Get()
+        {
+            Assert.IsInstanceOf<string>(LowMemory.ValueSoftWarning);
+            Assert.AreEqual(LowMemory.ValueSoftWarning, "soft_warning", "Value should be 'soft_warning'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property ValueHardWarning of SystemEvents.LowMemory")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.LowMemory.ValueHardWarning A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void ValueHardWarning_LowMemory_GET()
+        {
+            Assert.IsInstanceOf<string>(LowMemory.ValueHardWarning);
+            Assert.AreEqual(LowMemory.ValueHardWarning, "hard_warning", "Value should be 'hard_warning'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property EventName of SystemEvents.MobileDataState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.MobileDataState.EventName A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void EventName_MobileDataState_GET()
+        {
+            Assert.IsInstanceOf<string>(MobileDataState.EventName);
+            Assert.AreEqual(MobileDataState.EventName, "tizen.system.event.mobile_data_state", "Value should be 'tizen.system.event.mobile_data_state'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateKey of SystemEvents.MobileDataState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.MobileDataState.StateKey A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateKey_MobileDataState_GET()
+        {
+            Assert.IsInstanceOf<string>(MobileDataState.StateKey);
+            Assert.AreEqual(MobileDataState.StateKey, "mobile_data_state", "Value should be 'mobile_data_state'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateValueOff of SystemEvents.MobileDataState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.MobileDataState.StateValueOff A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateValueOff_MobileDataState_GET()
+        {
+            Assert.IsInstanceOf<string>(MobileDataState.StateValueOff);
+            Assert.AreEqual(MobileDataState.StateValueOff, "off", "Value should be 'off'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateValueOn of SystemEvents.MobileDataState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.MobileDataState.StateValueOn A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateValueOn_MobileDataState_GET()
+        {
+            Assert.IsInstanceOf<string>(MobileDataState.StateValueOn);
+            Assert.AreEqual(MobileDataState.StateValueOn, "on", "Value should be 'on'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property EventName of SystemEvents.NetworkStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.NetworkStatus.EventName A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void EventName_NetworkStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(NetworkStatus.EventName);
+            Assert.AreEqual(NetworkStatus.EventName, "tizen.system.event.network_status", "Value should be 'tizen.system.event.network_status'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StatusKey of SystemEvents.NetworkStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.NetworkStatus.StatusKey A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StatusKey_NetworkStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(NetworkStatus.StatusKey);
+            Assert.AreEqual(NetworkStatus.StatusKey, "network_status", "Value should be 'network_status'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StatusValueBt of SystemEvents.NetworkStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.NetworkStatus.StatusValueBt A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StatusValueBt_NetworkStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(NetworkStatus.StatusValueBt);
+            Assert.AreEqual(NetworkStatus.StatusValueBt, "bt", "Value should be 'bt'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StatusValueCellular of SystemEvents.NetworkStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.NetworkStatus.StatusValueCellular A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StatusValueCellular_NetworkStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(NetworkStatus.StatusValueCellular);
+            Assert.AreEqual(NetworkStatus.StatusValueCellular, "cellular", "Value should be 'cellular'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StatusValueDisconnected of SystemEvents.NetworkStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.NetworkStatus.StatusValueDisconnected A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StatusValueDisconnected_NetworkStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(NetworkStatus.StatusValueDisconnected);
+            Assert.AreEqual(NetworkStatus.StatusValueDisconnected, "disconnected", "Value should be 'disconnected'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StatusValueEthernet of SystemEvents.NetworkStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.NetworkStatus.StatusValueEthernet A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StatusValueEthernet_NetworkStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(NetworkStatus.StatusValueEthernet);
+            Assert.AreEqual(NetworkStatus.StatusValueEthernet, "ethernet", "Value should be 'ethernet'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StatusValueNetProxy of SystemEvents.NetworkStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.NetworkStatus.StatusValueNetProxy A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StatusValueNetProxy_NetworkStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(NetworkStatus.StatusValueNetProxy);
+            Assert.AreEqual(NetworkStatus.StatusValueNetProxy, "net_proxy", "Value should be 'net_proxy'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StatusValueWifi of SystemEvents.NetworkStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.NetworkStatus.StatusValueWifi A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StatusValueWifi_NetworkStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(NetworkStatus.StatusValueWifi);
+            Assert.AreEqual(NetworkStatus.StatusValueWifi, "wifi", "Value should be 'wifi'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property EventName of SystemEvents.NpsEnableState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.NpsEnableState.EventName A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void EventName_NpsEnableState_GET()
+        {
+            Assert.IsInstanceOf<string>(NpsEnableState.EventName);
+            Assert.AreEqual(NpsEnableState.EventName, "tizen.system.event.nps_enable_state", "Value should be 'tizen.system.event.nps_enable_state'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateKey of SystemEvents.NpsEnableState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.NpsEnableState.StateKey A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateKey_NpsEnableState_GET()
+        {
+            Assert.IsInstanceOf<string>(NpsEnableState.StateKey);
+            Assert.AreEqual(NpsEnableState.StateKey, "nps_enable_state", "Value should be 'nps_enable_state'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateValueDisabled of SystemEvents.NpsEnableState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.NpsEnableState.StateValueDisabled A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateValueDisabled_NpsEnableState_GET()
+        {
+            Assert.IsInstanceOf<string>(NpsEnableState.StateValueDisabled);
+            Assert.AreEqual(NpsEnableState.StateValueDisabled, "disabled", "Value should be 'disabled'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateValueEnabled of SystemEvents.NpsEnableState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.NpsEnableState.StateValueEnabled A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateValueEnabled_NpsEnableState_GET()
+        {
+            Assert.IsInstanceOf<string>(NpsEnableState.StateValueEnabled);
+            Assert.AreEqual(NpsEnableState.StateValueEnabled, "enabled", "Value should be 'enabled'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property EventName of SystemEvents.OutgoingMsg")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.OutgoingMsg.EventName A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void EventName_OutgoingMsg_GET()
+        {
+            Assert.IsInstanceOf<string>(OutgoingMsg.EventName);
+            Assert.AreEqual(OutgoingMsg.EventName, "tizen.system.event.outgoing_msg", "Value should be 'tizen.system.event.outgoing_msg'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property TypeKey of SystemEvents.OutgoingMsg")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.OutgoingMsg.TypeKey A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void TypeKey_OutgoingMsg_GET()
+        {
+            Assert.IsInstanceOf<string>(OutgoingMsg.TypeKey);
+            Assert.AreEqual(OutgoingMsg.TypeKey, "msg_type", "Value should be 'msg_type'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property TypeValueMms of SystemEvents.OutgoingMsg")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.OutgoingMsg.TypeValueMms A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void TypeValueMms_OutgoingMsg_GET()
+        {
+            Assert.IsInstanceOf<string>(OutgoingMsg.TypeValueMms);
+            Assert.AreEqual(OutgoingMsg.TypeValueMms, "mms", "Value should be 'mms'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property TypeValueSms of SystemEvents.OutgoingMsg")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.OutgoingMsg.TypeValueSms A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void TypeValueSms_OutgoingMsg_GET()
+        {
+            Assert.IsInstanceOf<string>(OutgoingMsg.TypeValueSms);
+            Assert.AreEqual(OutgoingMsg.TypeValueSms, "sms", "Value should be 'sms'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property IdKey of SystemEvents.OutgoingMsg")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.OutgoingMsg.IdKey A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void IdKey_OutgoingMsg_GET()
+        {
+            Assert.IsInstanceOf<string>(OutgoingMsg.IdKey);
+            Assert.AreEqual(OutgoingMsg.IdKey, "msg_id", "Value should be 'msg_id'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property EventName of SystemEvents.RegionFormat")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.RegionFormat.EventName A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void EventName_RegionFormat_GET()
+        {
+            Assert.IsInstanceOf<string>(RegionFormat.EventName);
+            Assert.AreEqual(RegionFormat.EventName, "tizen.system.event.region_format", "Value should be 'tizen.system.event.region_format'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property Key of SystemEvents.RegionFormat")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.RegionFormat.Key A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void Key_RegionFormat_GET()
+        {
+            Assert.IsInstanceOf<string>(RegionFormat.Key);
+            Assert.AreEqual(RegionFormat.Key, "region_format", "Value should be 'region_format'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property EventName of SystemEvents.SilentMode")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.SilentMode.EventName A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void EventName_SilentMode_GET()
+        {
+            Assert.IsInstanceOf<string>(SilentMode.EventName);
+            Assert.AreEqual(SilentMode.EventName, "tizen.system.event.silent_mode", "Value should be 'tizen.system.event.silent_mode'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property Key of SystemEvents.SilentMode")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.SilentMode.Key A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void Key_SilentMode_GET()
+        {
+            Assert.IsInstanceOf<string>(SilentMode.Key);
+            Assert.AreEqual(SilentMode.Key, "silent_mode", "Value should be 'silent_mode'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property ValueOff of SystemEvents.SilentMode")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.SilentMode.ValueOff A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void ValueOff_SilentMode_GET()
+        {
+            Assert.IsInstanceOf<string>(SilentMode.ValueOff);
+            Assert.AreEqual(SilentMode.ValueOff, "off", "Value should be 'off'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property ValueOn of SystemEvents.SilentMode")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.SilentMode.ValueOn A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void ValueOn_SilentMode_GET()
+        {
+            Assert.IsInstanceOf<string>(SilentMode.ValueOn);
+            Assert.AreEqual(SilentMode.ValueOn, "on", "Value should be 'on'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property EventName of SystemEvents.SystemShutdown")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.SystemShutdown.EventName A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void EventName_SystemShutdown_GET()
+        {
+            Assert.IsInstanceOf<string>(SystemShutdown.EventName);
+            Assert.AreEqual(SystemShutdown.EventName, "tizen.system.event.system_shutdown", "Value should be 'tizen.system.event.system_shutdown'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property EventName of SystemEvents.TimeChanged")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.TimeChanged.EventName A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void EventName_TimeChanged_GET()
+        {
+            Assert.IsInstanceOf<string>(TimeChanged.EventName);
+            Assert.AreEqual(TimeChanged.EventName, "tizen.system.event.time_changed", "Value should be 'tizen.system.event.time_changed'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property EventName of SystemEvents.TimeZone")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.TimeZone.EventName A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void EventName_TimeZone_GET()
+        {
+            Assert.IsInstanceOf<string>(Applications.EventManager.SystemEvents.TimeZone.EventName);
+            Assert.AreEqual(Applications.EventManager.SystemEvents.TimeZone.EventName, "tizen.system.event.time_zone", "Value should be 'tizen.system.event.time_zone'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property Key of SystemEvents.TimeZone")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.TimeZone.Key A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void Key_TimeZone_GET()
+        {
+            Assert.IsInstanceOf<string>(Applications.EventManager.SystemEvents.TimeZone.Key);
+            Assert.AreEqual(Applications.EventManager.SystemEvents.TimeZone.Key, "time_zone", "Value should be 'time_zone'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property EventName of SystemEvents.UsbStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.UsbStatus.EventName A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void EventName_UsbStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(UsbStatus.EventName);
+            Assert.AreEqual(UsbStatus.EventName, "tizen.system.event.usb_status", "Value should be 'tizen.system.event.usb_status'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StatusKey of SystemEvents.UsbStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.UsbStatus.StatusKey A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StatusKey_UsbStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(UsbStatus.StatusKey);
+            Assert.AreEqual(UsbStatus.StatusKey, "usb_status", "Value should be 'usb_status'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StatusValueAvailable of SystemEvents.UsbStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.UsbStatus.StatusValueAvailable A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StatusValueAvailable_UsbStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(UsbStatus.StatusValueAvailable);
+            Assert.AreEqual(UsbStatus.StatusValueAvailable, "available", "Value should be 'available'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StatusValueConnected of SystemEvents.UsbStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.UsbStatus.StatusValueConnected A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StatusValueConnected_UsbStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(UsbStatus.StatusValueConnected);
+            Assert.AreEqual(UsbStatus.StatusValueConnected, "connected", "Value should be 'connected'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StatusValueDisconnected of SystemEvents.UsbStatus")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.UsbStatus.StatusValueDisconnected A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StatusValueDisconnected_UsbStatus_GET()
+        {
+            Assert.IsInstanceOf<string>(UsbStatus.StatusValueDisconnected);
+            Assert.AreEqual(UsbStatus.StatusValueDisconnected, "disconnected", "Value should be 'disconnected'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property EventName of SystemEvents.VibrationState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.VibrationState.EventName A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void EventName_VibrationState_GET()
+        {
+            Assert.IsInstanceOf<string>(VibrationState.EventName);
+            Assert.AreEqual(VibrationState.EventName, "tizen.system.event.vibration_state", "Value should be 'tizen.system.event.vibration_state'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateKey of SystemEvents.VibrationState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.VibrationState.StateKey A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateKey_VibrationState_GET()
+        {
+            Assert.IsInstanceOf<string>(VibrationState.StateKey);
+            Assert.AreEqual(VibrationState.StateKey, "vibration_state", "Value should be 'vibration_state'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateValueOff of SystemEvents.VibrationState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.VibrationState.StateValueOff A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateValueOff_VibrationState_GET()
+        {
+            Assert.IsInstanceOf<string>(VibrationState.StateValueOff);
+            Assert.AreEqual(VibrationState.StateValueOff, "off", "Value should be 'off'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateValueOn of SystemEvents.VibrationState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.VibrationState.StateValueOn A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateValueOn_VibrationState_GET()
+        {
+            Assert.IsInstanceOf<string>(VibrationState.StateValueOn);
+            Assert.AreEqual(VibrationState.StateValueOn, "on", "Value should be 'on'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property EventName of SystemEvents.WifiState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.WifiState.EventName A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void EventName_WifiState_GET()
+        {
+            Assert.IsInstanceOf<string>(WifiState.EventName);
+            Assert.AreEqual(WifiState.EventName, "tizen.system.event.wifi_state", "Value should be 'tizen.system.event.wifi_state'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateKey of SystemEvents.WifiState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.WifiState.StateKey A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateKey_WifiState_GET()
+        {
+            Assert.IsInstanceOf<string>(WifiState.StateKey);
+            Assert.AreEqual(WifiState.StateKey, "wifi_state", "Value should be 'wifi_state'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateValueConnected of SystemEvents.WifiState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.WifiState.StateValueConnected A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateValueConnected_WifiState_GET()
+        {
+            Assert.IsInstanceOf<string>(WifiState.StateValueConnected);
+            Assert.AreEqual(WifiState.StateValueConnected, "connected", "Value should be 'connected'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateValueOff of SystemEvents.WifiState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.WifiState.StateValueOff A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateValueOff_WifiState_GET()
+        {
+            Assert.IsInstanceOf<string>(WifiState.StateValueOff);
+            Assert.AreEqual(WifiState.StateValueOff, "off", "Value should be 'off'");
+        }\r
+\r
+        [Test]
+        [Category("P1")]
+        [Description("Get property StateValueOn of SystemEvents.WifiState")]
+        [Property("SPEC", "Tizen.Applications.EventManager.SystemEvents.WifiState.StateValueOn A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRO")]
+        [Property("AUTHOR", "Inkyun Kil, inkyun.kil@samsung.com")]
+        public void StateValueOn_WifiState_GET()
+        {
+            Assert.IsInstanceOf<string>(WifiState.StateValueOn);
+            Assert.AreEqual(WifiState.StateValueOn, "on", "Value should be 'on'");
+        }
+    }
+}