blob: ca1713f7b4ce7e2a563f219818c10b40c9dc48d9 [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);
}