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