blob: 8c3117eef92ad3f77f03294d3ee59625bc7057b3 [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 new Uri({scheme, String userInfo: "", String host: "", port: 0,
* String path, Iterable<String> pathSegments, String query, Map<String,
* String> queryParameters, fragment: ""})
* Creates a new URI from its components.
* The scheme component is set through scheme. The scheme is normalized to
* all lowercase letters.
* @description Check scheme normalization
* @author ilya
*/
import "../../../Utils/expect.dart";
main() {
var x = new Uri(scheme: 'FoO');
Expect.equals('foo', x.scheme);
}