Merge: tests: Test result update for `curl_http`
[nit.git] / tests / test_new_native.nit
index 49ab177..39400dc 100644 (file)
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-var s = new NativeString(4)
-s[0] = 'N'
-s[2] = 't'
-s[1] = 'i'
-s[3] = '\0'
+var s = new CString(4)
+s[0] = 0x4E
+s[2] = 0x74
+s[1] = 0x69
+s[3] = 0
 print s.class_name
 print s[0]
 print s.to_s
@@ -31,3 +31,10 @@ print a.length
 print a[0]
 print a.to_a.join(",")
 
+var i
+i = 3
+a = new NativeArray[Int](i)
+i = 1
+a[i] = i
+print a[i]
+print a[1]