blob: 3c8366e97e4df653948dddd9f07b193200f7d68e [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.
// @dart = 2.9
/// @assertion If the string is not already all upper case, returns a new string
/// where all characters of this string are made upper case. Returns
/// this otherwise.
/// @description Checks basic cases (cyrillic alphabet)
/// @author msyabro
import "../../../Utils/expect.dart";
main() {
Expect.equals("ЗОМГ", "зОмГ".toUpperCase());
}