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

  • Home
  • SEARCH
  • 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 8880469
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T20:10:17+00:00 2026-06-14T20:10:17+00:00

I have a data structure that is created in one function and passed onto

  • 0

I have a data structure that is created in one function and passed onto other functions. I am trying to unit test all those functions.

Do I need to re-create that data structure (the environment) at each function? I tried using a global variable but I cannot guarantee which test case will run before the other.

I know I cannot override __init__ of unittest.TestCase without much headache.

How else can I achieve that? Passing a parameter or somehow making it a variable and avoiding a race condition?

  • 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-14T20:10:18+00:00Added an answer on June 14, 2026 at 8:10 pm

    It sounds like you do not want to redefine the data structure before each test. As long as the tests do not modify the data, I don’t think there is any problem with defining the data structure in __init__:

    import unittest
    
    class Test(unittest.TestCase):
        def __init__(self, methodName = 'runTest'):
            unittest.TestCase.__init__(self, methodName)
            self.data = range(5)
    
        def test_getitem(self):
            self.assertEqual(self.data[1],1)
    
        def test_reversed(self):
            self.assertEqual(list(reversed(self.data)),[4,3,2,1,0])
    
    if __name__ == '__main__':
        import sys
        sys.argv.insert(1,'--verbose')
        unittest.main(argv = sys.argv)
    

    yields

    % test.py
    test_getitem (__main__.Test) ... ok
    test_reversed (__main__.Test) ... ok
    
    ----------------------------------------------------------------------
    Ran 2 tests in 0.000s
    
    OK
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

If I have a requirement to create a data structure that has the following
I have to design a data structure that is to be used in a
I have a problem here that requires to design a data structure that takes
I have a JSON-like data structure (which I don't want to change) that is
I have the need to use a Stack-like data structure for a program that
I have a photoblog built on CakePHP 2.0 with a data structure that looks
I have these two data structures that I continually find myself choosing between when
In the data structures class that I am currently taking, we have been tasked
I have a set of data that is structured like this: ItemA.GroupA ItemB.GroupA ItemC.GroupB
I have a Database that contains data about articles , structures and manufacturers .

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.