class TestCase::LINEN {
  static method line : int () {
    my $line : int = __LINE__;
    
    unless ($line == 3) {
      return 0;
    }
    return 1;
  }
}