BAEL-2766 Added more asserts to add items to map

This commit is contained in:
josephine-barboza 2019-04-14 22:56:48 +05:30 committed by GitHub
parent cef5964b6b
commit 5a3d6a0c51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -31,7 +31,9 @@ class MapTest{
map.putAll(hobbyMap)
assertTrue(map == [name:"Jerry", age: 42, city: "New York", hobby:"Singing"])
assertTrue(hobbyMap.hobby == "Singing")
assertTrue(hobbyMap[hobbyLiteral] == "Singing")
map.plus([1:20]) // returns new map
map << [2:30]
@ -143,4 +145,4 @@ class MapTest{
}
}
}