blob: 83a3db3b4de823ac8096a4dbc457c2a639519f66 [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 Undocumented
* @description Checks that this method causes no error and the result
* is not null and is indeed a String.
* @author rodionov
*/
import "../../../Utils/expect.dart";
main() {
OutOfMemoryError e = new OutOfMemoryError();
Expect.isTrue(e.toString() != null);
Expect.isTrue(e.toString() is String);
}