-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathApplicationTest.cpp
59 lines (50 loc) · 1.66 KB
/
ApplicationTest.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#include <native/library.hpp>
TEST (JavaLangBytexxxx, Constructor) {
// Given empty value for Bytes constructor and assign value - Return Byte
Bytes defaultConstructorBytes;
int expectResult = 0;
int actualByteValue = defaultConstructorBytes.intValue();
assertEquals(expectResult, actualByteValue);
assertEquals("0", defaultConstructorBytes.toString());
Bytes byteConstructorBytes = Bytes(3);
expectResult = 3;
actualByteValue = byteConstructorBytes.intValue();
assertEquals(expectResult, actualByteValue);
assertEquals("3", byteConstructorBytes.toString());
// Constructor with String
Bytes stringConstructorBytes = Bytes("3");
actualByteValue = stringConstructorBytes.intValue();
assertEquals(expectResult, actualByteValue);
assertEquals("3", stringConstructorBytes.toString());
// Copy constructor
Bytes copyConstructorBytes = Bytes(stringConstructorBytes);
actualByteValue = copyConstructorBytes.intValue();
assertEquals(expectResult, actualByteValue);
assertEquals("3", copyConstructorBytes.toString());
try {
Bytes exceptionBytes = Bytes("");
} catch (NumberFormatException &e) {
assertEquals(String("input string is null"), e.getMessage());
}
try {
Bytes exceptionBytes = Bytes("abcd");
}
catch (NumberFormatException &e) {
assertEquals("Not a number", e.getMessage());
}
try {
Bytes exceptionBytes = Bytes("999999999999");
}
catch (NumberFormatException &e) {
assertEquals("Integer out of range", e.getMessage());
}
try {
Bytes exceptionBytes = Bytes("256");
}
catch (NumberFormatException &e) {
assertEquals("out of byte range", e.getMessage());
}
}
int main(int argc, const_string argv[]) {
return ApplicationTest(argc, argv);
}