blob: 250828e00b75c81d9216ff138d504b2b6918e024 [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 strategy
* Tunes the compression algorithm. Use the value ZLibOption.strategyDefault
* for normal data, ZLibOption.strategyFiltered for data produced by a filter
* (or predictor), ZLibOption.strategyHuffmanOnly to force Huffman encoding
* only (no string match), or ZLibOption.strategyRle to limit match distances
* to one (run-length encoding).
* @description Checks that [strategy] is set correctly when the value
* ZLibOption.strategyFiltered is used.
* @author ngl@unipro.ru
*/
import "dart:io";
import "../../../Utils/expect.dart";
main() {
ZLibEncoder v = new ZLibEncoder(strategy: ZLibOption.strategyFiltered);
Expect.equals(ZLibOption.strategyFiltered, v.strategy);
}