| 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 | |
| 49 | const InvokeResult QtTestStep::invokeStepBody() { |
nothing calls this directly
no outgoing calls
no test coverage detected