From: Inkyun Kil Date: Thu, 25 Apr 2019 08:52:03 +0000 (+0900) Subject: [Applications.EventManager] Add TCs for SystemEvents X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F62%2F204662%2F5;p=test%2Ftct%2Fcsharp%2Fapi.git [Applications.EventManager] Add TCs for SystemEvents Change-Id: I18b4c8c4f6691645cfcdfe5a8af409c99be259a4 Signed-off-by: Inkyun Kil --- 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 index 0000000..d224a8a --- /dev/null +++ b/tct-suite-vs/Tizen.Applications.EventManager.Tests/testcase/TSEventManager.SystemEvents.cs @@ -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(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(BatteryChargerStatus.StatusKey); + Assert.AreEqual(BatteryChargerStatus.StatusKey, "battery_charger_status", "Value should be 'battery_charger_status'"); + } + + [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(BatteryChargerStatus.StatusValueConnected); + Assert.AreEqual(BatteryChargerStatus.StatusValueConnected, "connected", "Value should be 'connected'"); + } + + [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(BatteryChargerStatus.StatusValueDisconnected); + Assert.AreEqual(BatteryChargerStatus.StatusValueDisconnected, "disconnected", "Value should be 'disconnected'"); + } + + [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(BatteryChargerStatus.StatusValueCharging); + Assert.AreEqual(BatteryChargerStatus.StatusValueCharging, "charging", "Value should be 'charging'"); + } + + [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(BatteryChargerStatus.StatusValueDischarging); + Assert.AreEqual(BatteryChargerStatus.StatusValueDischarging, "discharging", "Value should be 'discharging'"); + } + + [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(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(AutoRotateState.StateKey); + Assert.AreEqual(AutoRotateState.StateKey, "autorotate_state", "Value should be 'autorotate_state'"); + } + + [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(AutoRotateState.StateOn); + Assert.AreEqual(AutoRotateState.StateOn, "on", "Value should be 'on'"); + } + + [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(AutoRotateState.StateOff); + Assert.AreEqual(AutoRotateState.StateOff, "off", "Value should be 'off'"); + } + + [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(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(BatteryLevelStatus.StatusKey); + Assert.AreEqual(BatteryLevelStatus.StatusKey, "battery_level_status", "Value should be 'battery_level_status'"); + } + + [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(BatteryLevelStatus.StatusValueEmpty); + Assert.AreEqual(BatteryLevelStatus.StatusValueEmpty, "empty", "Value should be 'empty'"); + } + + [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(BatteryLevelStatus.StatusValueCritical); + Assert.AreEqual(BatteryLevelStatus.StatusValueCritical, "critical", "Value should be 'critical'"); + } + + [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(BatteryLevelStatus.StatusValueLow); + Assert.AreEqual(BatteryLevelStatus.StatusValueLow, "low", "Value should be 'low'"); + } + + [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(BatteryLevelStatus.StatusValueHigh); + Assert.AreEqual(BatteryLevelStatus.StatusValueHigh, "high", "Value should be 'high'"); + } + + [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(BatteryLevelStatus.StatusValueFull); + Assert.AreEqual(BatteryLevelStatus.StatusValueFull, "full", "Value should be 'full'"); + } + + [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(BootCompleted.EventName); + Assert.AreEqual(BootCompleted.EventName, "tizen.system.event.boot_completed", "Value should be 'tizen.system.event.boot_completed'"); + } + + [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(Btstate.EventName); + Assert.AreEqual(Btstate.EventName, "tizen.system.event.bt_state", "Value should be 'tizen.system.event.bt_state'"); + } + + [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(Btstate.StateKey); + Assert.AreEqual(Btstate.StateKey, "bt_state", "Value should be 'bt_state'"); + } + + [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(Btstate.StateValueOff); + Assert.AreEqual(Btstate.StateValueOff, "off", "Value should be 'off'"); + } + + [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(Btstate.StateValueOn); + Assert.AreEqual(Btstate.StateValueOn, "on", "Value should be 'on'"); + } + + [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(Btstate.LeStateKey); + Assert.AreEqual(Btstate.LeStateKey, "bt_le_state", "Value should be 'bt_le_state'"); + } + + [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(Btstate.LeStateValueOff); + Assert.AreEqual(Btstate.LeStateValueOff, "off", "Value should be 'off'"); + } + + [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(Btstate.LeStateValueOn); + Assert.AreEqual(Btstate.LeStateValueOn, "on", "Value should be 'on'"); + } + + [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(Btstate.TransferStateKey); + Assert.AreEqual(Btstate.TransferStateKey, "bt_transfering_state", "Value should be 'bt_transfering_state'"); + } + + [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(Btstate.TransferStateValueNontransfering); + Assert.AreEqual(Btstate.TransferStateValueNontransfering, "non_transfering", "Value should be 'non_transfering'"); + } + + [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(Btstate.TransferStateValueTransfering); + Assert.AreEqual(Btstate.TransferStateValueTransfering, "transfering", "Value should be 'transfering'"); + } + + [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(DataRoamingState.EventName); + Assert.AreEqual(DataRoamingState.EventName, "tizen.system.event.data_roaming_state", "Value should be 'tizen.system.event.data_roaming_state'"); + } + + [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(DataRoamingState.StateKey); + Assert.AreEqual(DataRoamingState.StateKey, "data_roaming_state", "Value should be 'data_roaming_state'"); + } + + [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(DataRoamingState.StateValueOn); + Assert.AreEqual(DataRoamingState.StateValueOn, "on", "Value should be 'on'"); + } + + [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(DataRoamingState.StateValueOff); + Assert.AreEqual(DataRoamingState.StateValueOff, "off", "Value should be 'off'"); + } + + [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(DisplayState.EventName); + Assert.AreEqual(DisplayState.EventName, "tizen.system.event.display_state", "Value should be 'tizen.system.event.display_state'"); + } + + [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(DisplayState.StateKey); + Assert.AreEqual(DisplayState.StateKey, "display_state", "Value should be 'display_state'"); + } + + [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(DisplayState.StateValueNormal); + Assert.AreEqual(DisplayState.StateValueNormal, "normal", "Value should be 'normal'"); + } + + + [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(DisplayState.StateValueDim); + Assert.AreEqual(DisplayState.StateValueDim, "dim", "Value should be 'dim'"); + } + + [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(DisplayState.StateValueOff); + Assert.AreEqual(DisplayState.StateValueOff, "off", "Value should be 'off'"); + } + + [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(EarjackStatus.EventName); + Assert.AreEqual(EarjackStatus.EventName, "tizen.system.event.earjack_status", "Value should be 'tizen.system.event.earjack_status'"); + } + + [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(EarjackStatus.StatusKey); + Assert.AreEqual(EarjackStatus.StatusKey, "earjack_status", "Value should be 'earjack_status'"); + } + + [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(EarjackStatus.StatusValueDisconnected); + Assert.AreEqual(EarjackStatus.StatusValueDisconnected, "disconnected", "Value should be 'disconnected'"); + } + + [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(EarjackStatus.StatusValueConnected); + Assert.AreEqual(EarjackStatus.StatusValueConnected, "connected", "Value should be 'connected'"); + } + + [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(FontSet.EventName); + Assert.AreEqual(FontSet.EventName, "tizen.system.event.font_set", "Value should be 'tizen.system.event.font_set'"); + } + + [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(FontSet.Key); + Assert.AreEqual(FontSet.Key, "font_set", "Value should be 'font_set'"); + } + + [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(GpsEnableState.EventName); + Assert.AreEqual(GpsEnableState.EventName, "tizen.system.event.gps_enable_state", "Value should be 'tizen.system.event.gps_enable_state'"); + } + + [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(GpsEnableState.StateKey); + Assert.AreEqual(GpsEnableState.StateKey, "gps_enable_state", "Value should be 'gps_enable_state'"); + } + + [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(GpsEnableState.StateValueDisabled); + Assert.AreEqual(GpsEnableState.StateValueDisabled, "disabled", "Value should be 'disabled'"); + } + + [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(GpsEnableState.StateValueEnabled); + Assert.AreEqual(GpsEnableState.StateValueEnabled, "enabled", "Value should be 'enabled'"); + } + + [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(HourFormat.EventName); + Assert.AreEqual(HourFormat.EventName, "tizen.system.event.hour_format", "Value should be 'tizen.system.event.hour_format'"); + } + + [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(HourFormat.Key); + Assert.AreEqual(HourFormat.Key, "hour_format", "Value should be 'hour_format'"); + } + + [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(HourFormat.Value12); + Assert.AreEqual(HourFormat.Value12, "12", "Value should be '12'"); + } + + [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(HourFormat.Value24); + Assert.AreEqual(HourFormat.Value24, "24", "Value should be '24'"); + } + + [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(IncomingMsg.EventName); + Assert.AreEqual(IncomingMsg.EventName, "tizen.system.event.incoming_msg", "Value should be 'tizen.system.event.incoming_msg'"); + } + + [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(IncomingMsg.TypeKey); + Assert.AreEqual(IncomingMsg.TypeKey, "msg_type", "Value should be 'msg_type'"); + } + + [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(IncomingMsg.TypeValueSms); + Assert.AreEqual(IncomingMsg.TypeValueSms, "sms", "Value should be 'sms'"); + } + + [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(IncomingMsg.TypeValueMms); + Assert.AreEqual(IncomingMsg.TypeValueMms, "mms", "Value should be 'mms'"); + } + + [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(IncomingMsg.TypeValuePush); + Assert.AreEqual(IncomingMsg.TypeValuePush, "push", "Value should be 'push'"); + } + + [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(IncomingMsg.TypeValueCb); + Assert.AreEqual(IncomingMsg.TypeValueCb, "cb", "Value should be 'cb'"); + } + + [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(IncomingMsg.IdKey); + Assert.AreEqual(IncomingMsg.IdKey, "msg_id", "Value should be 'msg_id'"); + } + + [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(LanguageSet.EventName); + Assert.AreEqual(LanguageSet.EventName, "tizen.system.event.language_set", "Value should be 'tizen.system.event.language_set'"); + } + + [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(LanguageSet.Key); + Assert.AreEqual(LanguageSet.Key, "language_set", "Value should be 'language_set'"); + } + + [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(LocatingEnableState.EventName); + Assert.AreEqual(LocatingEnableState.EventName, "tizen.system.event.location_enable_state", "Value should be 'tizen.system.event.location_enable_state'"); + } + + [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(LocatingEnableState.StateKey); + Assert.AreEqual(LocatingEnableState.StateKey, "location_enable_state", "Value should be 'location_enable_state'"); + } + + [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(LocatingEnableState.StateValueDisabled); + Assert.AreEqual(LocatingEnableState.StateValueDisabled, "disabled", "Value should be 'disabled'"); + } + + [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(LocatingEnableState.StateValueEnabled); + Assert.AreEqual(LocatingEnableState.StateValueEnabled, "enabled", "Value should be 'enabled'"); + } + + [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(LowMemory.EventName); + Assert.AreEqual(LowMemory.EventName, "tizen.system.event.low_memory", "Value should be 'tizen.system.event.low_memory'"); + } + + [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(LowMemory.Key); + Assert.AreEqual(LowMemory.Key, "low_memory", "Value should be 'low_memory'"); + } + + [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(LowMemory.ValueNormal); + Assert.AreEqual(LowMemory.ValueNormal, "normal", "Value should be 'normal'"); + } + + [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(LowMemory.ValueSoftWarning); + Assert.AreEqual(LowMemory.ValueSoftWarning, "soft_warning", "Value should be 'soft_warning'"); + } + + [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(LowMemory.ValueHardWarning); + Assert.AreEqual(LowMemory.ValueHardWarning, "hard_warning", "Value should be 'hard_warning'"); + } + + [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(MobileDataState.EventName); + Assert.AreEqual(MobileDataState.EventName, "tizen.system.event.mobile_data_state", "Value should be 'tizen.system.event.mobile_data_state'"); + } + + [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(MobileDataState.StateKey); + Assert.AreEqual(MobileDataState.StateKey, "mobile_data_state", "Value should be 'mobile_data_state'"); + } + + [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(MobileDataState.StateValueOff); + Assert.AreEqual(MobileDataState.StateValueOff, "off", "Value should be 'off'"); + } + + [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(MobileDataState.StateValueOn); + Assert.AreEqual(MobileDataState.StateValueOn, "on", "Value should be 'on'"); + } + + [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(NetworkStatus.EventName); + Assert.AreEqual(NetworkStatus.EventName, "tizen.system.event.network_status", "Value should be 'tizen.system.event.network_status'"); + } + + [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(NetworkStatus.StatusKey); + Assert.AreEqual(NetworkStatus.StatusKey, "network_status", "Value should be 'network_status'"); + } + + [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(NetworkStatus.StatusValueBt); + Assert.AreEqual(NetworkStatus.StatusValueBt, "bt", "Value should be 'bt'"); + } + + [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(NetworkStatus.StatusValueCellular); + Assert.AreEqual(NetworkStatus.StatusValueCellular, "cellular", "Value should be 'cellular'"); + } + + [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(NetworkStatus.StatusValueDisconnected); + Assert.AreEqual(NetworkStatus.StatusValueDisconnected, "disconnected", "Value should be 'disconnected'"); + } + + [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(NetworkStatus.StatusValueEthernet); + Assert.AreEqual(NetworkStatus.StatusValueEthernet, "ethernet", "Value should be 'ethernet'"); + } + + [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(NetworkStatus.StatusValueNetProxy); + Assert.AreEqual(NetworkStatus.StatusValueNetProxy, "net_proxy", "Value should be 'net_proxy'"); + } + + [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(NetworkStatus.StatusValueWifi); + Assert.AreEqual(NetworkStatus.StatusValueWifi, "wifi", "Value should be 'wifi'"); + } + + [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(NpsEnableState.EventName); + Assert.AreEqual(NpsEnableState.EventName, "tizen.system.event.nps_enable_state", "Value should be 'tizen.system.event.nps_enable_state'"); + } + + [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(NpsEnableState.StateKey); + Assert.AreEqual(NpsEnableState.StateKey, "nps_enable_state", "Value should be 'nps_enable_state'"); + } + + [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(NpsEnableState.StateValueDisabled); + Assert.AreEqual(NpsEnableState.StateValueDisabled, "disabled", "Value should be 'disabled'"); + } + + [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(NpsEnableState.StateValueEnabled); + Assert.AreEqual(NpsEnableState.StateValueEnabled, "enabled", "Value should be 'enabled'"); + } + + [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(OutgoingMsg.EventName); + Assert.AreEqual(OutgoingMsg.EventName, "tizen.system.event.outgoing_msg", "Value should be 'tizen.system.event.outgoing_msg'"); + } + + [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(OutgoingMsg.TypeKey); + Assert.AreEqual(OutgoingMsg.TypeKey, "msg_type", "Value should be 'msg_type'"); + } + + [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(OutgoingMsg.TypeValueMms); + Assert.AreEqual(OutgoingMsg.TypeValueMms, "mms", "Value should be 'mms'"); + } + + [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(OutgoingMsg.TypeValueSms); + Assert.AreEqual(OutgoingMsg.TypeValueSms, "sms", "Value should be 'sms'"); + } + + [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(OutgoingMsg.IdKey); + Assert.AreEqual(OutgoingMsg.IdKey, "msg_id", "Value should be 'msg_id'"); + } + + [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(RegionFormat.EventName); + Assert.AreEqual(RegionFormat.EventName, "tizen.system.event.region_format", "Value should be 'tizen.system.event.region_format'"); + } + + [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(RegionFormat.Key); + Assert.AreEqual(RegionFormat.Key, "region_format", "Value should be 'region_format'"); + } + + [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(SilentMode.EventName); + Assert.AreEqual(SilentMode.EventName, "tizen.system.event.silent_mode", "Value should be 'tizen.system.event.silent_mode'"); + } + + [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(SilentMode.Key); + Assert.AreEqual(SilentMode.Key, "silent_mode", "Value should be 'silent_mode'"); + } + + [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(SilentMode.ValueOff); + Assert.AreEqual(SilentMode.ValueOff, "off", "Value should be 'off'"); + } + + [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(SilentMode.ValueOn); + Assert.AreEqual(SilentMode.ValueOn, "on", "Value should be 'on'"); + } + + [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(SystemShutdown.EventName); + Assert.AreEqual(SystemShutdown.EventName, "tizen.system.event.system_shutdown", "Value should be 'tizen.system.event.system_shutdown'"); + } + + [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(TimeChanged.EventName); + Assert.AreEqual(TimeChanged.EventName, "tizen.system.event.time_changed", "Value should be 'tizen.system.event.time_changed'"); + } + + [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(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'"); + } + + [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(Applications.EventManager.SystemEvents.TimeZone.Key); + Assert.AreEqual(Applications.EventManager.SystemEvents.TimeZone.Key, "time_zone", "Value should be 'time_zone'"); + } + + [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(UsbStatus.EventName); + Assert.AreEqual(UsbStatus.EventName, "tizen.system.event.usb_status", "Value should be 'tizen.system.event.usb_status'"); + } + + [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(UsbStatus.StatusKey); + Assert.AreEqual(UsbStatus.StatusKey, "usb_status", "Value should be 'usb_status'"); + } + + [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(UsbStatus.StatusValueAvailable); + Assert.AreEqual(UsbStatus.StatusValueAvailable, "available", "Value should be 'available'"); + } + + [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(UsbStatus.StatusValueConnected); + Assert.AreEqual(UsbStatus.StatusValueConnected, "connected", "Value should be 'connected'"); + } + + [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(UsbStatus.StatusValueDisconnected); + Assert.AreEqual(UsbStatus.StatusValueDisconnected, "disconnected", "Value should be 'disconnected'"); + } + + [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(VibrationState.EventName); + Assert.AreEqual(VibrationState.EventName, "tizen.system.event.vibration_state", "Value should be 'tizen.system.event.vibration_state'"); + } + + [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(VibrationState.StateKey); + Assert.AreEqual(VibrationState.StateKey, "vibration_state", "Value should be 'vibration_state'"); + } + + [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(VibrationState.StateValueOff); + Assert.AreEqual(VibrationState.StateValueOff, "off", "Value should be 'off'"); + } + + [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(VibrationState.StateValueOn); + Assert.AreEqual(VibrationState.StateValueOn, "on", "Value should be 'on'"); + } + + [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(WifiState.EventName); + Assert.AreEqual(WifiState.EventName, "tizen.system.event.wifi_state", "Value should be 'tizen.system.event.wifi_state'"); + } + + [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(WifiState.StateKey); + Assert.AreEqual(WifiState.StateKey, "wifi_state", "Value should be 'wifi_state'"); + } + + [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(WifiState.StateValueConnected); + Assert.AreEqual(WifiState.StateValueConnected, "connected", "Value should be 'connected'"); + } + + [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(WifiState.StateValueOff); + Assert.AreEqual(WifiState.StateValueOff, "off", "Value should be 'off'"); + } + + [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(WifiState.StateValueOn); + Assert.AreEqual(WifiState.StateValueOn, "on", "Value should be 'on'"); + } + } +}