blob: 1e33630d0f61c133dfba1ba35ccc0be4ac916b3f [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);
}