blob: 8e48ae28ce027c20508ac9422f32effddf9c412b [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.
// @dart = 2.9
/// @assertion
/// ZLibDecoder({
/// int windowBits: ZLibOption.DEFAULT_WINDOW_BITS,
/// List<int> dictionary: null,
/// bool raw: false
/// })
/// @description Checks that this constructor creates a new ZLibDecoder object
/// with specified [dictionary] parameter.
/// @author ngl@unipro.ru
import "dart:io";
import "../../../Utils/expect.dart";
main() {
List<int> dictionary = [1,2,3];
ZLibDecoder v = new ZLibDecoder(dictionary: dictionary);
Expect.isTrue(v is ZLibDecoder);
Expect.equals(15, v.windowBits);
Expect.listEquals(dictionary, v.dictionary);
Expect.equals(false, v.raw);
}