-
-
Notifications
You must be signed in to change notification settings - Fork 130
/
Copy pathtest_toInt.cpp
45 lines (36 loc) · 1.17 KB
/
test_toInt.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
* Copyright (c) 2020 Arduino. All rights reserved.
*/
/**************************************************************************************
* INCLUDE
**************************************************************************************/
#include <catch.hpp>
#include <String.h>
#include "StringPrinter.h"
/**************************************************************************************
* TEST CODE
**************************************************************************************/
TEST_CASE ("Testing String::toInt when string is empty", "[String-toInt-01]")
{
arduino::String str;
int const val = str.toInt();
REQUIRE(val == 0);
}
TEST_CASE ("Testing String::toInt when string contains no number", "[String-toInt-02]")
{
arduino::String str("abc");
int const val = str.toInt();
REQUIRE(val == 0);
}
TEST_CASE ("Testing String::toInt when string contains a number", "[String-toInt-03]")
{
arduino::String str("-1");
int const val = str.toInt();
REQUIRE(val == -1);
}
TEST_CASE ("Testing String::toInt when string does not have a buffer", "[String-toInt-04]")
{
char *buffer = NULL;
arduino::String str(buffer);
REQUIRE(str.toInt() == 0);
}