<script>
//==== TEST: NetworkBearerSelectionObject_notexist
//==== PRIORITY P3
-//==== LABEL Check if interface NetworkBearerSelectionObject exists, it should not.
+//==== LABEL Check if interface NetworkBearerSelectionObject exists, it should not
//==== SPEC Tizen Web API:Communication:NBS:NetworkBearerSelectionObject:NetworkBearerSelectionObject U
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/networkbearerselection.html
//==== TEST_CRITERIA NIO
<script type="text/javascript">
//==== TEST: NetworkBearerSelection_extend
//==== PRIORITY P3
-//==== LABEL Check if NewtorkBearerSelection can have new properties added
+//==== LABEL Check if NetworkBearerSelection instance can have new properties added
//==== SPEC Tizen Web API:Communication:NBS:NetworkBearerSelection:NetworkBearerSelection U
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/networkbearerselection.html
//==== TEST_CRITERIA OBX
<script type="text/javascript">
//==== TEST: NetworkBearerSelection_in_tizen
//==== PRIORITY P3
-//==== LABEL Check if Tizen implements interface NetworkBearerSelectionObject and has attribute networkbearerselection
+//==== LABEL Check if Tizen namespace contains networkbearerselection
//==== SPEC Tizen Web API:Communication:NBS:NetworkBearerSelection:NetworkBearerSelection U
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/networkbearerselection.html
//==== TEST_CRITERIA OBME
<script>
//==== TEST: NetworkBearerSelection_notexist
//==== PRIORITY P3
-//==== LABEL Check if interface NetworkBearerSelection exists, it should not.
+//==== LABEL Check if interface NetworkBearerSelection exists, it should not
//==== SPEC Tizen Web API:Communication:NBS:NetworkBearerSelection:NetworkBearerSelection U
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/networkbearerselection.html
//==== TEST_CRITERIA NIO
<div id="log"></div>
<script type="text/javascript">
//==== TEST: NetworkBearerSelection_releaseRouteToHost
-//==== LABEL Check if releaseRouteToHost method called with non-optional arguments does what it should
+//==== LABEL Check if NetworkBearerSelection::releaseRouteToHost() method called with only mandatory arguments does what it should
//==== SPEC Tizen Web API:Communication:NBS:NetworkBearerSelection:releaseRouteToHost M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/networkbearerselection.html
//==== ONLOAD_DELAY 90
<div id="log"></div>
<script type="text/javascript">
//==== TEST: NetworkBearerSelection_releaseRouteToHost_errorCallback_TypeMismatch
-//==== LABEL Check if releaseRouteToHost throws exception when errorCallback is incorrect
+//==== LABEL Check if NetworkBearerSelection::releaseRouteToHost() throws exception when errorCallback is incorrect
//==== PRIORITY: P2
//==== ONLOAD_DELAY 90
//==== SPEC Tizen Web API:Communication:NBS:NetworkBearerSelection:releaseRouteToHost M
<div id="log"></div>
<script type="text/javascript">
//==== TEST: NetworkBearerSelection_releaseRouteToHost_errorCallback_invalid_cb
-//==== LABEL Check if releaseRouteToHost throws exception when errorCallback is invalid
+//==== LABEL Check if NetworkBearerSelection::releaseRouteToHost() throws exception when errorCallback is invalid
//==== PRIORITY: P2
//==== ONLOAD_DELAY 90
//==== SPEC Tizen Web API:Communication:NBS:NetworkBearerSelection:releaseRouteToHost M
setup({timeout: 90000});
var t = async_test(document.title, {timeout: 90000}),
- exceptionName = "TypeMismatchError", releaseRouteToHostSuccess, releaseRouteToHostError;
+ releaseRouteToHostSuccess, releaseRouteToHostError;
t.step(function () {
releaseRouteToHostSuccess = t.step_func(function () {
})
};
- assert_throws({name: exceptionName},
+ assert_throws(TYPE_MISMATCH_EXCEPTION,
function () {
tizen.networkbearerselection.releaseRouteToHost(NETWORK_TYPE, DOMAIN_NAME, releaseRouteToHostSuccess, releaseRouteToHostError);
- }, exceptionName + " should be thrown.");
+ }, "Wrong type of errorCallback");
t.done();
});
<div id="log"></div>
<script type="text/javascript">
//==== TEST: NetworkBearerSelection_releaseRouteToHost_exist
-//==== LABEL Check if releaseRouteToHost method exists and can be overriden
+//==== LABEL Check if NetworkBearerSelection::releaseRouteToHost() method exists
//==== SPEC Tizen Web API:Communication:NBS:NetworkBearerSelection:releaseRouteToHost M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/networkbearerselection.html
//==== TEST_CRITERIA ME
<div id="log"></div>
<script type="text/javascript">
//==== TEST: NetworkBearerSelection_releaseRouteToHost_missarg
-//==== LABEL Check if releaseRouteToHost method called with missing non-optional argument throws an exception
+//==== LABEL Check if NetworkBearerSelection::releaseRouteToHost() method called with missing mandatory argument throws an exception
//==== SPEC Tizen Web API:Communication:NBS:NetworkBearerSelection:releaseRouteToHost M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/networkbearerselection.html
//==== TEST_CRITERIA MMA
<div id="log"></div>
<script type="text/javascript">
//==== TEST: NetworkBearerSelection_releaseRouteToHost_networkType_TypeMismatch
-//==== LABEL Check if releaseRouteToHost throws exception when networkType is incorrect
+//==== LABEL Check if NetworkBearerSelection::releaseRouteToHost() throws exception when networkType is incorrect
//==== PRIORITY: P2
//==== ONLOAD_DELAY 90
//==== SPEC Tizen Web API:Communication:NBS:NetworkBearerSelection:releaseRouteToHost M
<div id="log"></div>
<script type="text/javascript">
//==== TEST: NetworkBearerSelection_releaseRouteToHost_successCallback_TypeMismatch
-//==== LABEL Check if releaseRouteToHost throws exception when successCallback is incorrect
+//==== LABEL Check if NetworkBearerSelection::releaseRouteToHost() throws exception when successCallback is incorrect
//==== PRIORITY: P2
//==== SPEC Tizen Web API:Communication:NBS:NetworkBearerSelection:releaseRouteToHost M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/networkbearerselection.html
<div id="log"></div>
<script type="text/javascript">
//==== TEST: NetworkBearerSelection_releaseRouteToHost_successCallback_invalid_cb
-//==== LABEL Check if releaseRouteToHost throws exception when successCallback is invalid
+//==== LABEL Check if NetworkBearerSelection::releaseRouteToHost() throws exception when successCallback is invalid
//==== PRIORITY: P2
//==== ONLOAD_DELAY 90
//==== SPEC Tizen Web API:Communication:NBS:NetworkBearerSelection:releaseRouteToHost M
setup({timeout: 90000});
var t = async_test(document.title, {timeout: 90000}),
- exceptionName = "TypeMismatchError", releaseRouteToHostSuccess;
+ releaseRouteToHostSuccess;
t.step(function () {
releaseRouteToHostSuccess = {
})
};
- assert_throws({name: exceptionName},
+ assert_throws(TYPE_MISMATCH_EXCEPTION,
function () {
tizen.networkbearerselection.releaseRouteToHost(NETWORK_TYPE, DOMAIN_NAME, releaseRouteToHostSuccess);
- }, exceptionName + " should be thrown.");
+ }, "Wrong type of successCallback");
t.done();
});
<div id="log"></div>
<script type="text/javascript">
//==== TEST: NetworkBearerSelection_releaseRouteToHost_with_errorCallback
-//==== LABEL Check if releaseRouteToHost called with optional errorCallback works as expected
+//==== LABEL Check if NetworkBearerSelection::releaseRouteToHost() called with optional errorCallback works as expected
//==== SPEC Tizen Web API:Communication:NBS:NetworkBearerSelection:releaseRouteToHost M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/networkbearerselection.html
//==== ONLOAD_DELAY 90
<div id="log"></div>
<script type="text/javascript">
//==== TEST: NetworkBearerSelection_requestRouteToHost
-//==== LABEL Check if requestRouteToHost method called with non-optional arguments does what it should
+//==== LABEL Check if NetworkBearerSelection::requestRouteToHost() method called with only mandatory arguments does what it should
//==== SPEC Tizen Web API:Communication:NBS:NetworkBearerSelection:requestRouteToHost M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/networkbearerselection.html
//==== ONLOAD_DELAY 90
<div id="log"></div>
<script type="text/javascript">
//==== TEST: NetworkBearerSelection_requestRouteToHost_errorCallback_TypeMismatch
-//==== LABEL Check if requestRouteToHost throws exception when errorCallback is incorrect
+//==== LABEL Check if NetworkBearerSelection::requestRouteToHost() throws exception when errorCallback is incorrect
//==== PRIORITY: P2
//==== ONLOAD_DELAY 90
//==== SPEC Tizen Web API:Communication:NBS:NetworkBearerSelection:requestRouteToHost M
<div id="log"></div>
<script type="text/javascript">
//==== TEST: NetworkBearerSelection_requestRouteToHost_errorCallback_invalid_cb
-//==== LABEL Check if requestRouteToHost throws exception when errorCallback is invalid
+//==== LABEL Check if NetworkBearerSelection::requestRouteToHost() throws exception when errorCallback is invalid
//==== PRIORITY: P2
//==== ONLOAD_DELAY 90
//==== SPEC Tizen Web API:Communication:NBS:NetworkBearerSelection:requestRouteToHost M
setup({timeout: 90000});
var t = async_test(document.title, {timeout: 90000}),
- exceptionName = "TypeMismatchError", requestRouteToHostSuccess, requestRouteToHostError;
+ requestRouteToHostSuccess, requestRouteToHostError;
t.step(function () {
requestRouteToHostSuccess = {
})
};
- assert_throws({name: exceptionName},
+ assert_throws(TYPE_MISMATCH_EXCEPTION,
function () {
tizen.networkbearerselection.requestRouteToHost(NETWORK_TYPE, DOMAIN_NAME, requestRouteToHostSuccess, requestRouteToHostError);
- }, exceptionName + " should be thrown.");
+ }, "Wrong type of errorCallback");
t.done();
});
<div id="log"></div>
<script type="text/javascript">
//==== TEST: NetworkBearerSelection_requestRouteToHost_exist
-//==== LABEL Check if requestRouteToHost method exists and can be overriden
+//==== LABEL Check if NetworkBearerSelection::requestRouteToHost() method exists
//==== SPEC Tizen Web API:Communication:NBS:NetworkBearerSelection:requestRouteToHost M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/networkbearerselection.html
//==== TEST_CRITERIA ME
<div id="log"></div>
<script type="text/javascript">
//==== TEST: NetworkBearerSelection_requestRouteToHost_missarg
-//==== LABEL Check if requestRouteToHost method called with missing non-optional argument throws an exception
+//==== LABEL Check if NetworkBearerSelection::requestRouteToHost() method called with missing mandatory argument throws an exception
//==== SPEC Tizen Web API:Communication:NBS:NetworkBearerSelection:requestRouteToHost M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/networkbearerselection.html
//==== TEST_CRITERIA MMA
<div id="log"></div>
<script type="text/javascript">
//==== TEST: NetworkBearerSelection_requestRouteToHost_networkType_TypeMismatch
-//==== LABEL Check if requestRouteToHost throws exception when networkType is incorrect
+//==== LABEL Check if NetworkBearerSelection::requestRouteToHost() throws exception when networkType is incorrect
//==== PRIORITY: P2
//==== ONLOAD_DELAY 90
//==== SPEC Tizen Web API:Communication:NBS:NetworkBearerSelection:requestRouteToHost M
<div id="log"></div>
<script type="text/javascript">
//==== TEST: NetworkBearerSelection_requestRouteToHost_successCallback_TypeMismatch
-//==== LABEL Check if requestRouteToHost throws exception when successCallback is incorrect
+//==== LABEL Check if NetworkBearerSelection::requestRouteToHost() throws exception when successCallback is incorrect
//==== PRIORITY: P2
//==== SPEC Tizen Web API:Communication:NBS:NetworkBearerSelection:requestRouteToHost M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/networkbearerselection.html
<div id="log"></div>
<script type="text/javascript">
//==== TEST: NetworkBearerSelection_requestRouteToHost_successCallback_invalid_cb
-//==== LABEL Check if requestRouteToHost throws exception when successCallback is invalid
+//==== LABEL Check if NetworkBearerSelection::requestRouteToHost() throws exception when successCallback is invalid
//==== PRIORITY: P2
//==== ONLOAD_DELAY 90
//==== SPEC Tizen Web API:Communication:NBS:NetworkBearerSelection:requestRouteToHost M
setup({timeout: 90000});
var t = async_test(document.title, {timeout: 90000}),
- exceptionName = "TypeMismatchError", requestRouteToHostSuccess;
+ requestRouteToHostSuccess;
t.step(function () {
ondisconnected: "dummy"
};
- assert_throws({name: exceptionName},
+ assert_throws(TYPE_MISMATCH_EXCEPTION,
function () {
tizen.networkbearerselection.requestRouteToHost(NETWORK_TYPE, DOMAIN_NAME, requestRouteToHostSuccess);
- }, exceptionName + " should be thrown.");
+ }, "Wrong type of successCallback");
t.done();
});
<div id="log"></div>
<script type="text/javascript">
//==== TEST: NetworkBearerSelection_requestRouteToHost_with_errorCallback
-//==== LABEL Check if requestRouteToHost called with optional errorCallback works as expected
+//==== LABEL Check if NetworkBearerSelection::requestRouteToHost() called with optional errorCallback works as expected
//==== SPEC Tizen Web API:Communication:NBS:NetworkBearerSelection:requestRouteToHost M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/networkbearerselection.html
//==== ONLOAD_DELAY 90
<div id="log"></div>
<script type="text/javascript">
//==== TEST: NetworkSuccessCallback_ondisconnected
-//==== LABEL Check if NetworkSuccessCallback ondisconnected is called
+//==== LABEL Check if NetworkSuccessCallback::ondisconnected is called
//==== SPEC Tizen Web API:Communication:NBS:NetworkSuccessCallback:ondisconnected M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/networkbearerselection.html
//==== EXECUTION_TYPE manual
<div id="log"></div>
<script type="text/javascript">
//==== TEST: NetworkSuccessCallback_onsuccess
-//==== LABEL Check if NetworkSuccessCallback onsuccess is called
+//==== LABEL Check if NetworkSuccessCallback::onsuccess is called
//==== SPEC Tizen Web API:Communication:NBS:NetworkSuccessCallback:onsuccess M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/networkbearerselection.html
//==== ONLOAD_DELAY 90
<capabilities>
<capability name="telephony"/>
</capabilities>
- <testcase purpose="Check if interface NetworkBearerSelectionObject exists, it should not." type="compliance" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P3" id="NetworkBearerSelectionObject_notexist">
+ <testcase purpose="Check if interface NetworkBearerSelectionObject exists, it should not" type="compliance" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P3" id="NetworkBearerSelectionObject_notexist">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelectionObject_notexist.html</test_script_entry>
</description>
</spec>
</specs>
</testcase>
- <testcase purpose="Check if NewtorkBearerSelection can have new properties added" type="compliance" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P3" id="NetworkBearerSelection_extend">
+ <testcase purpose="Check if NetworkBearerSelection instance can have new properties added" type="compliance" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P3" id="NetworkBearerSelection_extend">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_extend.html</test_script_entry>
</description>
</spec>
</specs>
</testcase>
- <testcase purpose="Check if Tizen implements interface NetworkBearerSelectionObject and has attribute networkbearerselection" type="compliance" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P3" id="NetworkBearerSelection_in_tizen">
+ <testcase purpose="Check if Tizen namespace contains networkbearerselection" type="compliance" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P3" id="NetworkBearerSelection_in_tizen">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_in_tizen.html</test_script_entry>
</description>
</spec>
</specs>
</testcase>
- <testcase purpose="Check if interface NetworkBearerSelection exists, it should not." type="compliance" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P3" id="NetworkBearerSelection_notexist">
+ <testcase purpose="Check if interface NetworkBearerSelection exists, it should not" type="compliance" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P3" id="NetworkBearerSelection_notexist">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_notexist.html</test_script_entry>
</description>
</spec>
</specs>
</testcase>
- <testcase purpose="Check if releaseRouteToHost method called with non-optional arguments does what it should" type="compliance" onload_delay="90" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P1" id="NetworkBearerSelection_releaseRouteToHost">
+ <testcase purpose="Check if NetworkBearerSelection::releaseRouteToHost() method called with only mandatory arguments does what it should" type="compliance" onload_delay="90" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P1" id="NetworkBearerSelection_releaseRouteToHost">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_releaseRouteToHost.html</test_script_entry>
</description>
</spec>
</specs>
</testcase>
- <testcase purpose="Check if releaseRouteToHost throws exception when errorCallback is incorrect" type="compliance" onload_delay="90" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P2" id="NetworkBearerSelection_releaseRouteToHost_errorCallback_TypeMismatch">
+ <testcase purpose="Check if NetworkBearerSelection::releaseRouteToHost() throws exception when errorCallback is incorrect" type="compliance" onload_delay="90" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P2" id="NetworkBearerSelection_releaseRouteToHost_errorCallback_TypeMismatch">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_releaseRouteToHost_errorCallback_TypeMismatch.html</test_script_entry>
</description>
</spec>
</specs>
</testcase>
- <testcase purpose="Check if releaseRouteToHost throws exception when errorCallback is invalid" type="compliance" onload_delay="90" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P2" id="NetworkBearerSelection_releaseRouteToHost_errorCallback_invalid_cb">
+ <testcase purpose="Check if NetworkBearerSelection::releaseRouteToHost() throws exception when errorCallback is invalid" type="compliance" onload_delay="90" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P2" id="NetworkBearerSelection_releaseRouteToHost_errorCallback_invalid_cb">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_releaseRouteToHost_errorCallback_invalid_cb.html</test_script_entry>
</description>
</spec>
</specs>
</testcase>
- <testcase purpose="Check if releaseRouteToHost method exists and can be overriden" type="compliance" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P1" id="NetworkBearerSelection_releaseRouteToHost_exist">
+ <testcase purpose="Check if NetworkBearerSelection::releaseRouteToHost() method exists" type="compliance" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P1" id="NetworkBearerSelection_releaseRouteToHost_exist">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_releaseRouteToHost_exist.html</test_script_entry>
</description>
</spec>
</specs>
</testcase>
- <testcase purpose="Check if releaseRouteToHost method called with missing non-optional argument throws an exception" type="compliance" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P1" id="NetworkBearerSelection_releaseRouteToHost_missarg">
+ <testcase purpose="Check if NetworkBearerSelection::releaseRouteToHost() method called with missing mandatory argument throws an exception" type="compliance" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P1" id="NetworkBearerSelection_releaseRouteToHost_missarg">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_releaseRouteToHost_missarg.html</test_script_entry>
</description>
</spec>
</specs>
</testcase>
- <testcase purpose="Check if releaseRouteToHost throws exception when networkType is incorrect" type="compliance" onload_delay="90" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P2" id="NetworkBearerSelection_releaseRouteToHost_networkType_TypeMismatch">
+ <testcase purpose="Check if NetworkBearerSelection::releaseRouteToHost() throws exception when networkType is incorrect" type="compliance" onload_delay="90" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P2" id="NetworkBearerSelection_releaseRouteToHost_networkType_TypeMismatch">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_releaseRouteToHost_networkType_TypeMismatch.html</test_script_entry>
</description>
</spec>
</specs>
</testcase>
- <testcase purpose="Check if releaseRouteToHost throws exception when successCallback is incorrect" type="compliance" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P2" id="NetworkBearerSelection_releaseRouteToHost_successCallback_TypeMismatch">
+ <testcase purpose="Check if NetworkBearerSelection::releaseRouteToHost() throws exception when successCallback is incorrect" type="compliance" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P2" id="NetworkBearerSelection_releaseRouteToHost_successCallback_TypeMismatch">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_releaseRouteToHost_successCallback_TypeMismatch.html</test_script_entry>
</description>
</spec>
</specs>
</testcase>
- <testcase purpose="Check if releaseRouteToHost throws exception when successCallback is invalid" type="compliance" onload_delay="90" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P2" id="NetworkBearerSelection_releaseRouteToHost_successCallback_invalid_cb">
+ <testcase purpose="Check if NetworkBearerSelection::releaseRouteToHost() throws exception when successCallback is invalid" type="compliance" onload_delay="90" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P2" id="NetworkBearerSelection_releaseRouteToHost_successCallback_invalid_cb">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_releaseRouteToHost_successCallback_invalid_cb.html</test_script_entry>
</description>
</spec>
</specs>
</testcase>
- <testcase purpose="Check if releaseRouteToHost called with optional errorCallback works as expected" type="compliance" onload_delay="90" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P1" id="NetworkBearerSelection_releaseRouteToHost_with_errorCallback">
+ <testcase purpose="Check if NetworkBearerSelection::releaseRouteToHost() called with optional errorCallback works as expected" type="compliance" onload_delay="90" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P1" id="NetworkBearerSelection_releaseRouteToHost_with_errorCallback">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_releaseRouteToHost_with_errorCallback.html</test_script_entry>
</description>
</spec>
</specs>
</testcase>
- <testcase purpose="Check if requestRouteToHost method called with non-optional arguments does what it should" type="compliance" onload_delay="90" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P1" id="NetworkBearerSelection_requestRouteToHost">
+ <testcase purpose="Check if NetworkBearerSelection::requestRouteToHost() method called with only mandatory arguments does what it should" type="compliance" onload_delay="90" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P1" id="NetworkBearerSelection_requestRouteToHost">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_requestRouteToHost.html</test_script_entry>
</description>
</spec>
</specs>
</testcase>
- <testcase purpose="Check if requestRouteToHost throws exception when errorCallback is incorrect" type="compliance" onload_delay="90" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P2" id="NetworkBearerSelection_requestRouteToHost_errorCallback_TypeMismatch">
+ <testcase purpose="Check if NetworkBearerSelection::requestRouteToHost() throws exception when errorCallback is incorrect" type="compliance" onload_delay="90" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P2" id="NetworkBearerSelection_requestRouteToHost_errorCallback_TypeMismatch">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_requestRouteToHost_errorCallback_TypeMismatch.html</test_script_entry>
</description>
</spec>
</specs>
</testcase>
- <testcase purpose="Check if requestRouteToHost throws exception when errorCallback is invalid" type="compliance" onload_delay="90" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P2" id="NetworkBearerSelection_requestRouteToHost_errorCallback_invalid_cb">
+ <testcase purpose="Check if NetworkBearerSelection::requestRouteToHost() throws exception when errorCallback is invalid" type="compliance" onload_delay="90" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P2" id="NetworkBearerSelection_requestRouteToHost_errorCallback_invalid_cb">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_requestRouteToHost_errorCallback_invalid_cb.html</test_script_entry>
</description>
</spec>
</specs>
</testcase>
- <testcase purpose="Check if requestRouteToHost method exists and can be overriden" type="compliance" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P1" id="NetworkBearerSelection_requestRouteToHost_exist">
+ <testcase purpose="Check if NetworkBearerSelection::requestRouteToHost() method exists" type="compliance" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P1" id="NetworkBearerSelection_requestRouteToHost_exist">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_requestRouteToHost_exist.html</test_script_entry>
</description>
</spec>
</specs>
</testcase>
- <testcase purpose="Check if requestRouteToHost method called with missing non-optional argument throws an exception" type="compliance" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P1" id="NetworkBearerSelection_requestRouteToHost_missarg">
+ <testcase purpose="Check if NetworkBearerSelection::requestRouteToHost() method called with missing mandatory argument throws an exception" type="compliance" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P1" id="NetworkBearerSelection_requestRouteToHost_missarg">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_requestRouteToHost_missarg.html</test_script_entry>
</description>
</spec>
</specs>
</testcase>
- <testcase purpose="Check if requestRouteToHost throws exception when networkType is incorrect" type="compliance" onload_delay="90" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P2" id="NetworkBearerSelection_requestRouteToHost_networkType_TypeMismatch">
+ <testcase purpose="Check if NetworkBearerSelection::requestRouteToHost() throws exception when networkType is incorrect" type="compliance" onload_delay="90" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P2" id="NetworkBearerSelection_requestRouteToHost_networkType_TypeMismatch">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_requestRouteToHost_networkType_TypeMismatch.html</test_script_entry>
</description>
</spec>
</specs>
</testcase>
- <testcase purpose="Check if requestRouteToHost throws exception when successCallback is incorrect" type="compliance" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P2" id="NetworkBearerSelection_requestRouteToHost_successCallback_TypeMismatch">
+ <testcase purpose="Check if NetworkBearerSelection::requestRouteToHost() throws exception when successCallback is incorrect" type="compliance" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P2" id="NetworkBearerSelection_requestRouteToHost_successCallback_TypeMismatch">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_requestRouteToHost_successCallback_TypeMismatch.html</test_script_entry>
</description>
</spec>
</specs>
</testcase>
- <testcase purpose="Check if requestRouteToHost throws exception when successCallback is invalid" type="compliance" onload_delay="90" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P2" id="NetworkBearerSelection_requestRouteToHost_successCallback_invalid_cb">
+ <testcase purpose="Check if NetworkBearerSelection::requestRouteToHost() throws exception when successCallback is invalid" type="compliance" onload_delay="90" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P2" id="NetworkBearerSelection_requestRouteToHost_successCallback_invalid_cb">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_requestRouteToHost_successCallback_invalid_cb.html</test_script_entry>
</description>
</spec>
</specs>
</testcase>
- <testcase purpose="Check if requestRouteToHost called with optional errorCallback works as expected" type="compliance" onload_delay="90" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P1" id="NetworkBearerSelection_requestRouteToHost_with_errorCallback">
+ <testcase purpose="Check if NetworkBearerSelection::requestRouteToHost() called with optional errorCallback works as expected" type="compliance" onload_delay="90" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P1" id="NetworkBearerSelection_requestRouteToHost_with_errorCallback">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_requestRouteToHost_with_errorCallback.html</test_script_entry>
</description>
</spec>
</specs>
</testcase>
- <testcase purpose="Check if NetworkSuccessCallback ondisconnected is called" type="compliance" status="approved" component="TizenAPI/Communication/NBS" execution_type="manual" priority="P1" id="NetworkSuccessCallback_ondisconnected">
+ <testcase purpose="Check if NetworkSuccessCallback::ondisconnected is called" type="compliance" status="approved" component="TizenAPI/Communication/NBS" execution_type="manual" priority="P1" id="NetworkSuccessCallback_ondisconnected">
<description>
<pre_condition>Please enable cellular data service</pre_condition>
<post_condition>Please re-enable cellular data service</post_condition>
</spec>
</specs>
</testcase>
- <testcase purpose="Check if NetworkSuccessCallback onsuccess is called" type="compliance" onload_delay="90" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P1" id="NetworkSuccessCallback_onsuccess">
+ <testcase purpose="Check if NetworkSuccessCallback::onsuccess is called" type="compliance" onload_delay="90" status="approved" component="TizenAPI/Communication/NBS" execution_type="auto" priority="P1" id="NetworkSuccessCallback_onsuccess">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkSuccessCallback_onsuccess.html</test_script_entry>
</description>
<capabilities>
<capability name="telephony"/>
</capabilities>
- <testcase purpose="Check if interface NetworkBearerSelectionObject exists, it should not." component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelectionObject_notexist">
+ <testcase purpose="Check if interface NetworkBearerSelectionObject exists, it should not" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelectionObject_notexist">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelectionObject_notexist.html</test_script_entry>
</description>
</testcase>
- <testcase purpose="Check if NewtorkBearerSelection can have new properties added" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_extend">
+ <testcase purpose="Check if NetworkBearerSelection instance can have new properties added" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_extend">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_extend.html</test_script_entry>
</description>
</testcase>
- <testcase purpose="Check if Tizen implements interface NetworkBearerSelectionObject and has attribute networkbearerselection" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_in_tizen">
+ <testcase purpose="Check if Tizen namespace contains networkbearerselection" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_in_tizen">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_in_tizen.html</test_script_entry>
</description>
</testcase>
- <testcase purpose="Check if interface NetworkBearerSelection exists, it should not." component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_notexist">
+ <testcase purpose="Check if interface NetworkBearerSelection exists, it should not" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_notexist">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_notexist.html</test_script_entry>
</description>
</testcase>
- <testcase purpose="Check if releaseRouteToHost method called with non-optional arguments does what it should" onload_delay="90" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_releaseRouteToHost">
+ <testcase purpose="Check if NetworkBearerSelection::releaseRouteToHost() method called with only mandatory arguments does what it should" onload_delay="90" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_releaseRouteToHost">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_releaseRouteToHost.html</test_script_entry>
</description>
</testcase>
- <testcase purpose="Check if releaseRouteToHost throws exception when errorCallback is incorrect" onload_delay="90" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_releaseRouteToHost_errorCallback_TypeMismatch">
+ <testcase purpose="Check if NetworkBearerSelection::releaseRouteToHost() throws exception when errorCallback is incorrect" onload_delay="90" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_releaseRouteToHost_errorCallback_TypeMismatch">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_releaseRouteToHost_errorCallback_TypeMismatch.html</test_script_entry>
</description>
</testcase>
- <testcase purpose="Check if releaseRouteToHost throws exception when errorCallback is invalid" onload_delay="90" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_releaseRouteToHost_errorCallback_invalid_cb">
+ <testcase purpose="Check if NetworkBearerSelection::releaseRouteToHost() throws exception when errorCallback is invalid" onload_delay="90" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_releaseRouteToHost_errorCallback_invalid_cb">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_releaseRouteToHost_errorCallback_invalid_cb.html</test_script_entry>
</description>
</testcase>
- <testcase purpose="Check if releaseRouteToHost method exists and can be overriden" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_releaseRouteToHost_exist">
+ <testcase purpose="Check if NetworkBearerSelection::releaseRouteToHost() method exists" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_releaseRouteToHost_exist">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_releaseRouteToHost_exist.html</test_script_entry>
</description>
</testcase>
- <testcase purpose="Check if releaseRouteToHost method called with missing non-optional argument throws an exception" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_releaseRouteToHost_missarg">
+ <testcase purpose="Check if NetworkBearerSelection::releaseRouteToHost() method called with missing mandatory argument throws an exception" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_releaseRouteToHost_missarg">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_releaseRouteToHost_missarg.html</test_script_entry>
</description>
</testcase>
- <testcase purpose="Check if releaseRouteToHost throws exception when networkType is incorrect" onload_delay="90" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_releaseRouteToHost_networkType_TypeMismatch">
+ <testcase purpose="Check if NetworkBearerSelection::releaseRouteToHost() throws exception when networkType is incorrect" onload_delay="90" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_releaseRouteToHost_networkType_TypeMismatch">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_releaseRouteToHost_networkType_TypeMismatch.html</test_script_entry>
</description>
</testcase>
- <testcase purpose="Check if releaseRouteToHost throws exception when successCallback is incorrect" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_releaseRouteToHost_successCallback_TypeMismatch">
+ <testcase purpose="Check if NetworkBearerSelection::releaseRouteToHost() throws exception when successCallback is incorrect" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_releaseRouteToHost_successCallback_TypeMismatch">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_releaseRouteToHost_successCallback_TypeMismatch.html</test_script_entry>
</description>
</testcase>
- <testcase purpose="Check if releaseRouteToHost throws exception when successCallback is invalid" onload_delay="90" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_releaseRouteToHost_successCallback_invalid_cb">
+ <testcase purpose="Check if NetworkBearerSelection::releaseRouteToHost() throws exception when successCallback is invalid" onload_delay="90" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_releaseRouteToHost_successCallback_invalid_cb">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_releaseRouteToHost_successCallback_invalid_cb.html</test_script_entry>
</description>
</testcase>
- <testcase purpose="Check if releaseRouteToHost called with optional errorCallback works as expected" onload_delay="90" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_releaseRouteToHost_with_errorCallback">
+ <testcase purpose="Check if NetworkBearerSelection::releaseRouteToHost() called with optional errorCallback works as expected" onload_delay="90" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_releaseRouteToHost_with_errorCallback">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_releaseRouteToHost_with_errorCallback.html</test_script_entry>
</description>
</testcase>
- <testcase purpose="Check if requestRouteToHost method called with non-optional arguments does what it should" onload_delay="90" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_requestRouteToHost">
+ <testcase purpose="Check if NetworkBearerSelection::requestRouteToHost() method called with only mandatory arguments does what it should" onload_delay="90" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_requestRouteToHost">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_requestRouteToHost.html</test_script_entry>
</description>
</testcase>
- <testcase purpose="Check if requestRouteToHost throws exception when errorCallback is incorrect" onload_delay="90" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_requestRouteToHost_errorCallback_TypeMismatch">
+ <testcase purpose="Check if NetworkBearerSelection::requestRouteToHost() throws exception when errorCallback is incorrect" onload_delay="90" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_requestRouteToHost_errorCallback_TypeMismatch">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_requestRouteToHost_errorCallback_TypeMismatch.html</test_script_entry>
</description>
</testcase>
- <testcase purpose="Check if requestRouteToHost throws exception when errorCallback is invalid" onload_delay="90" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_requestRouteToHost_errorCallback_invalid_cb">
+ <testcase purpose="Check if NetworkBearerSelection::requestRouteToHost() throws exception when errorCallback is invalid" onload_delay="90" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_requestRouteToHost_errorCallback_invalid_cb">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_requestRouteToHost_errorCallback_invalid_cb.html</test_script_entry>
</description>
</testcase>
- <testcase purpose="Check if requestRouteToHost method exists and can be overriden" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_requestRouteToHost_exist">
+ <testcase purpose="Check if NetworkBearerSelection::requestRouteToHost() method exists" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_requestRouteToHost_exist">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_requestRouteToHost_exist.html</test_script_entry>
</description>
</testcase>
- <testcase purpose="Check if requestRouteToHost method called with missing non-optional argument throws an exception" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_requestRouteToHost_missarg">
+ <testcase purpose="Check if NetworkBearerSelection::requestRouteToHost() method called with missing mandatory argument throws an exception" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_requestRouteToHost_missarg">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_requestRouteToHost_missarg.html</test_script_entry>
</description>
</testcase>
- <testcase purpose="Check if requestRouteToHost throws exception when networkType is incorrect" onload_delay="90" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_requestRouteToHost_networkType_TypeMismatch">
+ <testcase purpose="Check if NetworkBearerSelection::requestRouteToHost() throws exception when networkType is incorrect" onload_delay="90" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_requestRouteToHost_networkType_TypeMismatch">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_requestRouteToHost_networkType_TypeMismatch.html</test_script_entry>
</description>
</testcase>
- <testcase purpose="Check if requestRouteToHost throws exception when successCallback is incorrect" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_requestRouteToHost_successCallback_TypeMismatch">
+ <testcase purpose="Check if NetworkBearerSelection::requestRouteToHost() throws exception when successCallback is incorrect" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_requestRouteToHost_successCallback_TypeMismatch">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_requestRouteToHost_successCallback_TypeMismatch.html</test_script_entry>
</description>
</testcase>
- <testcase purpose="Check if requestRouteToHost throws exception when successCallback is invalid" onload_delay="90" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_requestRouteToHost_successCallback_invalid_cb">
+ <testcase purpose="Check if NetworkBearerSelection::requestRouteToHost() throws exception when successCallback is invalid" onload_delay="90" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_requestRouteToHost_successCallback_invalid_cb">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_requestRouteToHost_successCallback_invalid_cb.html</test_script_entry>
</description>
</testcase>
- <testcase purpose="Check if requestRouteToHost called with optional errorCallback works as expected" onload_delay="90" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_requestRouteToHost_with_errorCallback">
+ <testcase purpose="Check if NetworkBearerSelection::requestRouteToHost() called with optional errorCallback works as expected" onload_delay="90" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkBearerSelection_requestRouteToHost_with_errorCallback">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkBearerSelection_requestRouteToHost_with_errorCallback.html</test_script_entry>
</description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkSuccessCallback_notexist.html</test_script_entry>
</description>
</testcase>
- <testcase purpose="Check if NetworkSuccessCallback ondisconnected is called" component="TizenAPI/Communication/NBS" execution_type="manual" id="NetworkSuccessCallback_ondisconnected">
+ <testcase purpose="Check if NetworkSuccessCallback::ondisconnected is called" component="TizenAPI/Communication/NBS" execution_type="manual" id="NetworkSuccessCallback_ondisconnected">
<description>
<pre_condition>Please enable cellular data service</pre_condition>
<post_condition>Please re-enable cellular data service</post_condition>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkSuccessCallback_ondisconnected.html</test_script_entry>
</description>
</testcase>
- <testcase purpose="Check if NetworkSuccessCallback onsuccess is called" onload_delay="90" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkSuccessCallback_onsuccess">
+ <testcase purpose="Check if NetworkSuccessCallback::onsuccess is called" onload_delay="90" component="TizenAPI/Communication/NBS" execution_type="auto" id="NetworkSuccessCallback_onsuccess">
<description>
<test_script_entry>/opt/tct-networkbearerselection-tizen-tests/networkbearerselection/NetworkSuccessCallback_onsuccess.html</test_script_entry>
</description>