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