blob: 492e2002c9d827a1d514e29aeb6cd53a9dbdd57b [file] [log] [blame]
// Copyright (c) 2017, 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 Cookie(String name, String value)
/// Creates a new cookie setting the name and value.
/// By default the value of httpOnly will be set to true.
/// @description Checks that this constructor creates a new Cookie object. Test
/// empty name and value parameters
/// @author sgrekhov@unipro.ru
import "dart:io";
import "../../../Utils/expect.dart";
main() {
Cookie cookie = new Cookie("", "");
Expect.equals("", cookie.name);
Expect.equals("", cookie.value);
Expect.isTrue(cookie.httpOnly);
}