summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMuller, Alexander (A.) <amulle19@ford.com>2016-09-28 16:00:57 -0700
committerMuller, Alexander (A.) <amulle19@ford.com>2016-09-28 16:00:57 -0700
commit192a5460616a8c276cd4d65b660c74e6cf258ec9 (patch)
tree0e70d5a5b8a392887bde2ff47a478636a56826fc
parentf6b1da6e5336fd9e1346745d30aaab91382658b2 (diff)
parent803e62c445f99ba0aed8979e3db1d1df5ad507b5 (diff)
downloadsdl_ios-192a5460616a8c276cd4d65b660c74e6cf258ec9.tar.gz
Merge remote-tracking branch 'origin/develop' into feature/issue_8_json_encoder_decoder
* origin/develop: reverting function renaming in SDLRPCMessage.
-rw-r--r--SmartDeviceLinkTests/RPCSpecs/SuperclassSpecs/SDLRPCMessageSpec.m8
1 files changed, 4 insertions, 4 deletions
diff --git a/SmartDeviceLinkTests/RPCSpecs/SuperclassSpecs/SDLRPCMessageSpec.m b/SmartDeviceLinkTests/RPCSpecs/SuperclassSpecs/SDLRPCMessageSpec.m
index f23921158..57dbd3513 100644
--- a/SmartDeviceLinkTests/RPCSpecs/SuperclassSpecs/SDLRPCMessageSpec.m
+++ b/SmartDeviceLinkTests/RPCSpecs/SuperclassSpecs/SDLRPCMessageSpec.m
@@ -62,7 +62,7 @@ describe(@"FunctionName Tests", ^ {
[testMessage setFunctionName:@"Functioning"];
- expect([testMessage functionNameForId]).to(equal(@"Functioning"));
+ expect([testMessage getFunctionName]).to(equal(@"Functioning"));
});
it(@"Should get correctly when initialized", ^ {
@@ -71,18 +71,18 @@ describe(@"FunctionName Tests", ^ {
@{@"age":@25},
SDLNameOperationName:@"DoNothing"}} mutableCopy]];
- expect([testMessage functionNameForId]).to(equal(@"DoNothing"));
+ expect([testMessage getFunctionName]).to(equal(@"DoNothing"));
testMessage = [[SDLRPCMessage alloc] initWithName:@"DoSomething"];
- expect([testMessage functionNameForId]).to(equal(@"DoSomething"));
+ expect([testMessage getFunctionName]).to(equal(@"DoSomething"));
});
it(@"Should be nil if not set", ^ {
SDLRPCMessage* testMessage = [[SDLRPCMessage alloc] initWithDictionary:[@{SDLNameNotification:
@{SDLNameParameters:
@{}}} mutableCopy]];
- expect([testMessage functionNameForId]).to(beNil());
+ expect([testMessage getFunctionName]).to(beNil());
});
});