summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMuller, Alexander (A.) <amulle19@ford.com>2016-09-28 16:01:14 -0700
committerMuller, Alexander (A.) <amulle19@ford.com>2016-09-28 16:01:14 -0700
commit18607c8fd863e43b05c27d37cb2552f5e55c43c0 (patch)
tree431258a2becb2ac44e44827a0c9567b9aef01668
parent32b28ede4d624ed9d6ce934c4ec513a2a9e92394 (diff)
parent803e62c445f99ba0aed8979e3db1d1df5ad507b5 (diff)
downloadsdl_ios-feature/issue_85_siphon_server.tar.gz
Merge remote-tracking branch 'origin/develop' into feature/issue_85_siphon_serverfeature/issue_85_siphon_server
* 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());
});
});