MCPcopy Create free account
hub / github.com/cucumber/cucumber-cpp / getTmpFileName

Method getTmpFileName

src/drivers/QtTestDriver.cpp:40–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38 const QString filename{getTmpFileName()};
39
40 static QString getTmpFileName() {
41 QTemporaryFile tempFile{};
42 if (!tempFile.open()) {
43 return {};
44 }
45 return tempFile.fileName() + ".txt";
46 }
47};
48
49const InvokeResult QtTestStep::invokeStepBody() {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected