aboutsummaryrefslogtreecommitdiff
path: root/src/unit/array.unit
diff options
context:
space:
mode:
Diffstat (limited to 'src/unit/array.unit')
-rw-r--r--src/unit/array.unit8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unit/array.unit b/src/unit/array.unit
index 83401c1..e9f2bdf 100644
--- a/src/unit/array.unit
+++ b/src/unit/array.unit
@@ -101,4 +101,12 @@ suite Array
101 unitTest( aInts[j] == j ); 101 unitTest( aInts[j] == j );
102 } 102 }
103 } 103 }
104
105 test setSize
106 {
107 Bu::Array<Bu::String> aStr( 3 );
108 aStr.setSize( 3 );
109 aStr[1] = "Hello";
110 aStr[0] = aStr[1].clone();
111 }
104} 112}