|
package study ;
Java => 'DATA' ,
) ;
Java => 'STUDY' ,
AUTOSTUDY => 1,
STUDY => [ 't.types' ],
CLASSPATH => '.' ,
) ;
Java => 'STUDY' ,
AUTOSTUDY => 1,
STUDY => [ 't.types' ],
CLASSPATH => '.' ,
) ;
Java => 'study' ,
AUTOSTUDY => 1,
STUDY => [ 't.types' ],
CLASSPATH => '.' ,
) ;
Java => 'study' ,
AUTOSTUDY => 1,
STUDY => [ 't.types' ],
CLASSPATH => '.' ,
PACKAGE => 'main' ,
) ;
package study ;
BEGIN {
plan( tests => 11) ;
}
study_classes([
't.no_const'
]) ;
my $t = new study ::t::types() ;
{
ok( $t ->func(), "study" ) ;
ok( $t ->hm()->get( "key" ), "value" ) ;
my $nc = new study ::t::no_const() ;
ok( $nc ->{i}, 5) ;
my $a = new study :: study ::a8() ;
ok( $a ->{i}, 50) ;
ok( $a ->truth()) ;
ok( $a ->sa()->[1], 'titi' ) ;
ok( $a ->sb()->[0]->get( 'toto' ), 'titi' ) ;
ok( $a ->sb()->[1]->get( 'error' ), undef ) ;
my $toto_t = new toto::t::types() ;
ok(1) ;
my $main_t = new t::types() ;
ok(1) ;
}
ok( $t ->__get_private()->{proto}->ObjectCount(), 1) ;
|