blob: faf7abecaf9314720227f8cdadc8d8e0a6fb3275 [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.strategyHuffmanOnly is used.
* @author ngl@unipro.ru
*/
import "dart:io";
import "../../../Utils/expect.dart";
main() {
ZLibEncoder v = new ZLibEncoder(strategy: ZLibOption.strategyHuffmanOnly);
Expect.equals(ZLibOption.strategyHuffmanOnly, v.strategy);
}