Perl x Open Food Facts Hackathon: Paris, France - May 24-25 Learn more

class TestCase::Lib::Byte {
use Fn;
use Array;
static method basic : int () {
my $oval = Byte->new(Fn->INT8_MIN());
my $value1 = $oval->value;
unless ($value1 == Fn->INT8_MIN()) {
return 0;
}
return 1;
}
}