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 9137103
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T09:03:08+00:00 2026-06-17T09:03:08+00:00

I have a C++11 project with many googletest unit tests looking like TEST_F(GTest, testSomething)

  • 0

I have a C++11 project with many googletest unit tests looking like

TEST_F(GTest, testSomething) {
    int64_t n = 42;
    // following code depends on input size n
    ...
}

Rather than having a local constant n in each test, I’d like to be able to set the input size from one location, preferably the command line:

./RunMyProgram --gtest_filter=* --n=1000

The main should look like:

int main(int argc, char **argv) {

     // TODO: parse command line argument n here

    INFO("=== starting unit tests ===");

    ::testing::InitGoogleTest(&argc, argv);
    return RUN_ALL_TESTS();

}

With what should I replace ? in my test functions?

TEST_F(GTest, testSomething) {
    int64_t n = ?;
    // following code depends on input size n
    ...
}
  • 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-17T09:03:09+00:00Added an answer on June 17, 2026 at 9:03 am

    First of all, if you use the same value/parameter in more than one of your test functions, consider to use Fixtures.

    What you are trying to do for me looks like a “value parameterized test”. I guess thats rather common in testing world, and – tadaa, Google Test has a chapter in its advanced guide, called “Value Parameterized Test” (and oh, it uses fixtures).

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

Sidebar

Related Questions

I have an Eclipse project with many unit tests written in Groovy. I can
I have received a project with many lines like the following ones: HtmlOutputText content
We have a sub-project 'commonUtils' that has many generic code-snippets used across the parent
I have a web project with many selects that are already programmed like a
I have a project with many NUnit tests. I am happy for these tests
ok i have a project which has many gridview in its pages... now i
We have a project that’s using many C++11 facilities, and we thought about this
My android project uses many images, and I have images for different DPIs as
I have a project with several CSS files, each with many different settings. Every
Here is my situation: I have a C project linking with many libraries (I

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.