MCPcopy Create free account
hub / github.com/awslabs/aws-lambda-cpp / should_run

Function should_run

tests/gtest/gtest.h:13197–13197  ·  view source on GitHub ↗

Returns true if this test should run, that is if the test is not disabled (or it is disabled but the also_run_disabled_tests flag has been specified) and its full name matches the user-specified filter. Google Test allows the user to filter the tests by their full names. The full name of a test Bar in test suite Foo is defined as "Foo.Bar". Only the tests that match the filter will run. A filte

Source from the content-addressed store, hash-verified

13195 // For example, *A*:Foo.* is a filter that matches any string that
13196 // contains the character 'A' or starts with "Foo.".
13197 bool should_run() const { return should_run_; }
13198
13199 // Returns true iff this test will appear in the XML report.
13200 bool is_reportable() const {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected