#!/usr/bin/perl
use strict;
use warnings;
use Test::More;
use lib qw(t/lib);
use BitStreamTest;
my @implementations = impl_list;
my @encodings = encoding_list;
plan tests => scalar @encodings;
foreach my $encoding (@encodings) {
subtest "$encoding" => sub { test_encoding($encoding); };
}
done_testing();
sub test_encoding {
my $encoding = shift;
plan tests => scalar @implementations;
foreach my $type (@implementations) {
my $simple_stream = new_stream($type);
ok(defined $simple_stream, "new stream of $type");
}
}