The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
##################### We start with some black magic to print on failure.

BEGIN { $| = 1; print "1..2\n"; }
END {print "not ok 1\n" unless $loaded;}
use Text::NSP::Measures::2D::CHI;
$loaded = 1;
print "ok 1\n";

#####################

############ Check if class is abstract.

calculateStatistic();
$errorCode = getErrorCode();
if($errorCode == 101)
{
    print "ok 2\n";
}
else
{
    print "not ok 2\n";
}