blob: d0d9fb459459b65ce0994ae957d3e6e9f74f36cf [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 final int length
/// Returns the length of the content that has been accumulated so far.
/// This is a constant-time operation.
/// @description Checks that a correct value is returned
/// @author msyabro
import "../../../Utils/expect.dart";
main() {
Expect.equals(0, new StringBuffer().length);
Expect.equals(0, new StringBuffer("").length);
Expect.equals(1, new StringBuffer("\u0000").length);
Expect.equals(1, new StringBuffer(" ").length);
Expect.equals(6, new StringBuffer("string").length);
}