Adding objects GUI initial. Changing TODO. Some fixes along side
This commit is contained in:
parent
f579a969ce
commit
17ad239692
18 changed files with 1345 additions and 56 deletions
|
|
@ -9,6 +9,18 @@ struct TestStruct {
|
|||
String str = "test data";
|
||||
};
|
||||
|
||||
TEST_DEF_STATIC(Addition) {
|
||||
String str1 = "abc";
|
||||
String str2 = "def";
|
||||
{
|
||||
str1 + str2;
|
||||
}
|
||||
{
|
||||
TEST(str1 + str2 == "abcdef");
|
||||
TEST(str1 + "aaaccc" == "abcaaaccc");
|
||||
}
|
||||
}
|
||||
|
||||
TEST_DEF_STATIC(Simple) {
|
||||
String str;
|
||||
TEST(str.getIsConstFlag());
|
||||
|
|
@ -35,4 +47,5 @@ TEST_DEF_STATIC(Simple) {
|
|||
|
||||
TEST_DEF(Strings) {
|
||||
testSimple();
|
||||
testAddition();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue