wip: inop continued dev

This commit is contained in:
Henry Schimke
2024-02-01 14:14:41 -06:00
parent fbd48b5cfc
commit c193c96e7f
4 changed files with 55 additions and 44 deletions

View File

@@ -2,19 +2,19 @@
#![cfg(feature = "image")]
use rxing::{BarcodeFormat, MultiFormatReader};
use rxing::{BarcodeFormat, FilteredImageReader, MultiFormatReader};
mod common;
/**
* @author Sean Owen
*/
#[cfg(feature = "image-formats")]
#[cfg(feature = "image_formats")]
#[test]
fn dx_film_edge() {
let mut tester = common::AbstractBlackBoxTestCase::new(
"test_resources/blackbox/dxfilmedge-1",
MultiFormatReader::default(),
FilteredImageReader::new(MultiFormatReader::default()),
BarcodeFormat::DXFilmEdge,
);