test suite test array
test case test creation()
the array : array[string] • new(10)
assert the arraysize == 10
test case test access()
the array : array[string] • new(10)
the array[5] = "foo"
assert "foo" == the array[5]
test case test move()
the array : array[string] • new(3)
the array[0] = "foo"
the array[1] = "bar"
the array[2] = "baz"
assert "foo" == the array[0]
assert "bar" == the array[1]
assert "baz" == the array[2]
the arraymove(0, 1, 2)
assert "foo" == the array[0]
assert "foo" == the array[1]
assert "bar" == the array[2]
test case test initializer()
the array : ["foo", "bar"]
assert the arraysize == 2
assert the array[0] == "foo"
assert the array[1] == "bar"