summaryrefslogtreecommitdiff
path: root/src/components/application_manager/test/resumption/resumption_data_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/application_manager/test/resumption/resumption_data_test.cc')
-rw-r--r--src/components/application_manager/test/resumption/resumption_data_test.cc16
1 files changed, 7 insertions, 9 deletions
diff --git a/src/components/application_manager/test/resumption/resumption_data_test.cc b/src/components/application_manager/test/resumption/resumption_data_test.cc
index 12a38e1bc4..d5228934db 100644
--- a/src/components/application_manager/test/resumption/resumption_data_test.cc
+++ b/src/components/application_manager/test/resumption/resumption_data_test.cc
@@ -176,7 +176,7 @@ void ResumptionDataTest::CheckChoiceSet(sm::SmartObject& res_list) {
sm::SmartObject command = res_list[i][am::strings::choice_set][j];
EXPECT_EQ(i + j, command[am::strings::choice_id].asUInt());
char numb[12];
- std::snprintf(numb, 12, "%d", i + j);
+ std::snprintf(numb, 12, "%u", i + j);
std::string test_choice =
(*test_choiceset_map[i])[am::strings::choice_set][j]
[am::strings::vr_commands][0]
@@ -340,11 +340,10 @@ void ResumptionDataTest::CheckTimeoutPrompt(
void ResumptionDataTest::CheckVRHelp(sm::SmartObject& res_list) {
std::string text;
- int position;
for (uint i = 0; i < kCountOfVrhelptitle_; ++i) {
text = (*vr_help_)[i][am::strings::text].asString();
EXPECT_EQ(text, res_list[i][am::strings::text].asString());
- position = (*vr_help_)[i][am::strings::position].asInt();
+ int position = (*vr_help_)[i][am::strings::position].asInt();
EXPECT_EQ(position, res_list[i][am::strings::position].asInt());
}
}
@@ -517,7 +516,7 @@ void ResumptionDataTest::SetCommands() {
sm::SmartObject sm_icon;
for (uint32_t i = 0; i < kCountOfCommands_; ++i) {
char numb[12];
- std::snprintf(numb, 12, "%d", i);
+ std::snprintf(numb, 12, "%u", i);
sm_comm[am::strings::cmd_id] = i;
sm_comm[am::strings::menu_params][am::strings::position] = i;
sm_comm[am::strings::menu_params][am::hmi_request::parent_id] = i;
@@ -526,7 +525,7 @@ void ResumptionDataTest::SetCommands() {
for (uint32_t j = 0; j < kCountOfChoice_; ++j) {
char vr[12];
- std::snprintf(vr, 12, "%d", i + j);
+ std::snprintf(vr, 12, "%u", i + j);
vr_commandsvector[j] = "VrCommand " + std::string(vr);
}
sm_comm[am::strings::vr_commands] = vr_commandsvector;
@@ -544,7 +543,7 @@ void ResumptionDataTest::SetSubmenues() {
sm::SmartObject sm_comm;
for (uint32_t i = 10; i < kCountOfSubmenues_ + 10; ++i) {
char numb[12];
- std::snprintf(numb, 12, "%d", i);
+ std::snprintf(numb, 12, "%u", i);
sm_comm[am::strings::menu_id] = i;
sm_comm[am::strings::position] = i;
sm_comm[am::strings::menu_name] = "SubMenu" + std::string(numb);
@@ -563,7 +562,7 @@ void ResumptionDataTest::SetChoiceSet() {
for (uint32_t i = 0; i < kCountOfChoiceSets_; ++i) {
for (uint32_t j = 0; j < kCountOfChoice_; ++j) {
char numb[12];
- std::snprintf(numb, 12, "%d", i + j);
+ std::snprintf(numb, 12, "%u", i + j);
choice[am::strings::choice_id] = i + j;
vr_commandsvector[0] = "ChoiceSet VrCommand " + std::string(numb);
@@ -596,11 +595,10 @@ void ResumptionDataTest::SetChoiceSet() {
void ResumptionDataTest::SetAppFiles() {
am::AppFile test_file;
- int file_types;
for (uint i = 0; i < kCountOfFiles_; ++i) {
char numb[12];
std::snprintf(numb, 12, "%d", i);
- file_types = i;
+ int file_types = i;
test_file.is_persistent = true;
test_file.is_download_complete = true;
test_file.file_type = static_cast<FileType::eType>(file_types);