blob: 256dc458c9d7813c347952c67079c1f8516e74c1 [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 final bool isNotEmpty
/// Returns true if there is at least one element in this collection.
/// @description Checks that this method returns true iff [this] has at least one
/// element.
/// @author msyabro
import "../../../Utils/expect.dart";
main() {
var empty_runes = new Runes('');
Expect.isFalse(empty_runes.isNotEmpty);
var runes = new Runes('12345');
Expect.isTrue(runes.isNotEmpty);
}