Browse Source

showing test types

nas 2 years ago
parent
commit
0b7b76d315
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      test/remote/NRT/Batch.pm

+ 3
- 1
test/remote/NRT/Batch.pm View File

20
 
20
 
21
 sub test_rq_empty {
21
 sub test_rq_empty {
22
   my $this = shift;
22
   my $this = shift;
23
+  print "\nTesting requests\n";
23
   my $rq = $this->{tester}->get_code();  
24
   my $rq = $this->{tester}->get_code();  
24
   return $this->{tester}->assertEqual( $rq, "404 Not Found" );
25
   return $this->{tester}->assertEqual( $rq, "404 Not Found" );
25
 }
26
 }
26
 
27
 
27
 sub test_user {
28
 sub test_user {
28
   my $this = shift;
29
   my $this = shift;
30
+  print "\nTesting users\n";
29
   $this->{tester}->test_user_authentification( $this->get_default_user );
31
   $this->{tester}->test_user_authentification( $this->get_default_user );
30
   $this->{tester}->test_user_already_created( $this->get_default_user );
32
   $this->{tester}->test_user_already_created( $this->get_default_user );
31
   my $user2_index = $this->add_user(
33
   my $user2_index = $this->add_user(
72
 
74
 
73
 sub test_activity {
75
 sub test_activity {
74
   my $this = shift;
76
   my $this = shift;
75
-    
77
+  print "\nTesting activities\n";  
76
   my $activity = Activity->new( "test_1", $this->get_default_user );
78
   my $activity = Activity->new( "test_1", $this->get_default_user );
77
   $this->{tester}->test_create_activity( $activity );
79
   $this->{tester}->test_create_activity( $activity );
78
   $this->{tester}->test_activity_exists( $activity );
80
   $this->{tester}->test_activity_exists( $activity );

Loading…
Cancel
Save