blob: 6201de51877eeed83320f388e5e2d34de442a93d [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 int serverMaxWindowBits
* final
* Gets the Max Window Bits for the Server.
* @description Checks that this property gets the Max Window Bits for
* the Server
* @author sgrekhov@unipro.ru
*/
import "dart:io";
import "../../../Utils/expect.dart";
main() {
CompressionOptions co = new CompressionOptions(serverMaxWindowBits: 13);
Expect.equals(13, co.serverMaxWindowBits);
}