mirror of
https://github.com/deskflow/deskflow.git
synced 2026-07-01 21:02:39 +08:00
51 lines
1.1 KiB
C++
51 lines
1.1 KiB
C++
/*
|
|
* Deskflow -- mouse and keyboard sharing utility
|
|
* SPDX-FileCopyrightText: (C) 2025 Chris Rizzitello <sithlord48@gmail.com>
|
|
* SPDX-FileCopyrightText: (C) 2014 - 2021 Symless Ltd.
|
|
* SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
|
|
*/
|
|
|
|
#include "StringTests.h"
|
|
|
|
#include "base/String.h"
|
|
|
|
#include <string.h>
|
|
|
|
void StringTests::formatWithArgs()
|
|
{
|
|
const char *format = "%%%{1}=%{2}";
|
|
const char *arg1 = "answer";
|
|
const char *arg2 = "42";
|
|
|
|
std::string result = deskflow::string::format(format, arg1, arg2);
|
|
|
|
QCOMPARE(result, "%answer=42");
|
|
}
|
|
|
|
void StringTests::formatedString()
|
|
{
|
|
const char *format = "%s=%d";
|
|
const char *arg1 = "answer";
|
|
int arg2 = 42;
|
|
|
|
std::string result = deskflow::string::sprintf(format, arg1, arg2);
|
|
|
|
QCOMPARE("answer=42", result);
|
|
}
|
|
|
|
void StringTests::stringToInt()
|
|
{
|
|
std::string number = "123";
|
|
size_t value = deskflow::string::stringToSizeType(number);
|
|
QCOMPARE(value, 123);
|
|
}
|
|
|
|
void StringTests::intToString()
|
|
{
|
|
size_t value = 123;
|
|
std::string number = deskflow::string::sizeTypeToString(value);
|
|
QCOMPARE(number, "123");
|
|
}
|
|
|
|
QTEST_MAIN(StringTests)
|