71 lines
2.5 KiB
C++
71 lines
2.5 KiB
C++
/*
|
|
* All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or
|
|
* its licensors.
|
|
*
|
|
* For complete copyright and license terms please see the LICENSE at the root of this
|
|
* distribution (the "License"). All use of this software is governed by the License,
|
|
* or, if provided, by the license below or the license accompanying this file. Do not
|
|
* remove or modify any license notices. This file is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
*
|
|
*/
|
|
|
|
#include <AzTest/AzTest.h>
|
|
|
|
#include <AzQtComponents/Utilities/Conversions.h>
|
|
#include <QLocale>
|
|
|
|
TEST(AzQtComponents, FloatToString_Truncate2Decimals)
|
|
{
|
|
QLocale testLocal(QLocale::English, QLocale::UnitedStates);
|
|
|
|
const bool showThousandsSeparator = false;
|
|
const int numDecimalPlaces = 2;
|
|
EXPECT_EQ(AzQtComponents::toString(0.1234, numDecimalPlaces, testLocal, showThousandsSeparator), "0.12");
|
|
}
|
|
|
|
TEST(AzQtComponents, FloatToString_AllZerosButOne)
|
|
{
|
|
QLocale testLocal(QLocale::English, QLocale::UnitedStates);
|
|
|
|
const bool showThousandsSeparator = false;
|
|
int numDecimalPlaces = 2;
|
|
EXPECT_EQ(AzQtComponents::toString(1.0000, numDecimalPlaces, testLocal, showThousandsSeparator), "1.0");
|
|
}
|
|
|
|
TEST(AzQtComponents, FloatToString_TruncateAllZerosButOne)
|
|
{
|
|
QLocale testLocal(QLocale::English, QLocale::UnitedStates);
|
|
|
|
const bool showThousandsSeparator = false;
|
|
int numDecimalPlaces = 2;
|
|
EXPECT_EQ(AzQtComponents::toString(1.0001, numDecimalPlaces, testLocal, showThousandsSeparator), "1.0");
|
|
}
|
|
|
|
TEST(AzQtComponents, FloatToString_TruncateNotRound)
|
|
{
|
|
QLocale testLocal(QLocale::English, QLocale::UnitedStates);
|
|
|
|
const bool showThousandsSeparator = false;
|
|
int numDecimalPlaces = 3;
|
|
EXPECT_EQ(AzQtComponents::toString(0.1236, numDecimalPlaces, testLocal, showThousandsSeparator), "0.123");
|
|
}
|
|
|
|
TEST(AzQtComponents, FloatToString_TruncateShowThousandsSeparatorTruncateNoRound)
|
|
{
|
|
QLocale testLocal(QLocale::English, QLocale::UnitedStates);
|
|
|
|
const bool showThousandsSeparator = true;
|
|
int numDecimalPlaces = 3;
|
|
EXPECT_EQ(AzQtComponents::toString(1000.1236, numDecimalPlaces, testLocal, showThousandsSeparator), "1,000.123");
|
|
}
|
|
|
|
TEST(AzQtComponents, FloatToString_TruncateShowThousandsSeparatorOnlyOneDecimal)
|
|
{
|
|
QLocale testLocal(QLocale::English, QLocale::UnitedStates);
|
|
|
|
const bool showThousandsSeparator = true;
|
|
int numDecimalPlaces = 2;
|
|
EXPECT_EQ(AzQtComponents::toString(1000.000, numDecimalPlaces, testLocal, showThousandsSeparator), "1,000.0");
|
|
}
|