blob: a8994f268cf2333205e5e6c5a58fba19ba888e92 [file] [log] [blame]
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
/**
* @assertion Type runtimeType
* A representation of the runtime type of the object.
* @description Checks that the correct [Type] is returned.
* @author msyabro
*/
import "dart:typed_data";
import "../../../Utils/expect.dart";
main() {
var obj = new Int64List(0);
var type = obj.runtimeType;
Expect.isTrue(type is Type);
Expect.stringEquals("Int64List", obj.runtimeType.toString());
}