blob: d54947fb388aeb6e1b70179e803403d68d66549e [file] [log] [blame]
/*
* Copyright (c) 2011, 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 Random([int seed])
* Creates a random-number generator.
* @description Checks that an instance of [Random] is created.
* @author msyabro
*/
import "../../../Utils/expect.dart";
import "dart:math";
main() {
var rand = new Random(519);
Expect.isTrue(rand is Random);
rand = new Random(100);
Expect.isTrue(rand is Random);
}