Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8003689
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T16:43:08+00:00 2026-06-04T16:43:08+00:00

I’ve got a perl subroutine that should return the number of primes between a

  • 0

I’ve got a perl subroutine that should return the number of primes between a and b inclusive. I’ve got a test for this in testSub.t:

 
my $arrayref = MyPackage::generatePrimes(1,2);

my @array = @$arrayref;
is ( scalar(@array), 1, "One primes between (1,2)");

I need to rerun MyPackage::generatePrimes with a few other inputs (1..3, 10..15 etc). I could just do:


my $arrayref;
my @array;

# Test between (1,2)
$arrayref = MyPackage::generatePrimes(1,2); 
@array = @$arrayref;
is ( scalar(@array), 1, "One primes between (1,2)");

# Test between (1,3)
$arrayref = MyPackage::generatePrimes(1,3);
@array = @$arrayref;
is ( scalar(@array), 2, "Two primes between (1,3)");

which works fine, in this case. If I’ve got slightly more complex routines and tests, though, this doesn’t seem very clean in that there could be leakage between the tests when I re-use the variables.

What’s the correct (“clean”) method to add a second test? Is there a clean way to do this in testSub.t (tear-down arrayref and other variables that were generated by the above test before I test the subroutine again), or do I just write another test in testSub2.t?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T16:43:09+00:00Added an answer on June 4, 2026 at 4:43 pm

    You could simply wrap your testing code in a subroutine.

    #!/usr/bin/perl
    
    use strict ;
    use warnings ;
    use Test::More ;
    use MyPackage ;
    
    #             from, to, primes
    my @tests = ( [ 1 , 2 , 2 ] ,
                  [ 1 , 3 , 3 ] ) ;
    # Just add new tests as needed
    
    plan tests => @tests ;
    
    foreach my $test ( @tests ) {
      do_the_test( $test ) ;
    }
    
    sub do_the_test {
      my @args = @{ $_[0] } ;
    
      my @array = @{ MyPackage::generatePrimes( @args[0..1] ) } ;
      is( scalar @array , $args[2] ,
          sprintf( "Primes between (%d,%d): %d" , @args ) ) ;
    }
    

    Since each test is inside the subroutine the tests are seperate from each other.
    If you have more arguments you have to pass to your subroutine, you should think about passing the arguments in a hash.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I've got a string that has curly quotes in it. I'd like to replace
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
For some reason, after submitting a string like this Jack’s Spindle from a text
this is what i have right now Drawing an RSS feed into the php,
I have this code to decode numeric html entities to the UTF8 equivalent character.
I have a French site that I want to parse, but am running into
I am doing a simple coin flipping experiment for class that involves flipping a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.