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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T16:30:47+00:00 2026-05-30T16:30:47+00:00

After building my testfile, xxxxtest, with gtest can I pass a parameter when running

  • 0

After building my testfile, xxxxtest, with gtest can I pass a parameter when running the test, e.g. ./xxxxtest 100. I want to control my test function using the parameter, but I do not know how to use the para in my test, can you show me a sample in test?

  • 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-05-30T16:30:48+00:00Added an answer on May 30, 2026 at 4:30 pm

    You could do something like the following:

    main.cc

    #include <string>
    #include "gtest/gtest.h"
    #include "my_test.h"
    
    int main(int argc, char **argv) {
      std::string command_line_arg(argc == 2 ? argv[1] : "");
      testing::InitGoogleTest(&argc, argv);
      testing::AddGlobalTestEnvironment(new MyTestEnvironment(command_line_arg));
      return RUN_ALL_TESTS();
    }
    

    my_test.h

    #include <string>
    #include "gtest/gtest.h"
    
    namespace {
    std::string g_command_line_arg;
    }
    
    class MyTestEnvironment : public testing::Environment {
     public:
      explicit MyTestEnvironment(const std::string &command_line_arg) {
        g_command_line_arg = command_line_arg;
      }
    };
    
    TEST(MyTest, command_line_arg_test) {
      ASSERT_FALSE(g_command_line_arg.empty());
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In have my application configured in asp.net. I am using ajaxcontroltoolkit. After building the
After spending some time wireframing my ideas, I want to start building my rails
I'm currently building a web form using APEX that is losely modelled after a
I'me getting the following after building from he command line using xcodebuild, ay ideas
After building an application by using ant, i am copied the component to a
i'm NEW TO XCODE, working with mapkit and annotations, howver after building and running
After building up and running lots of WatiN tests, what are some good ways
after building the shared librrary using gcc, the shared library builds fine, but when
I am using Maven 3 for build Dashboard project After building my web application
So I have this app I'm working on and after building running the App

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.