| 7 | #include "../../../src/qtpasssettings.h" |
| 8 | |
| 9 | class tst_executor : public QObject { |
| 10 | Q_OBJECT |
| 11 | |
| 12 | private Q_SLOTS: |
| 13 | #ifndef Q_OS_WIN |
| 14 | void executeBlockingEcho(); |
| 15 | void executeBlockingWithArgs(); |
| 16 | void executeBlockingWithInput(); |
| 17 | void executeBlockingExitCode(); |
| 18 | void executeBlockingStderr(); |
| 19 | void executeBlockingEmptyArgs(); |
| 20 | void executeBlockingEchoMultiple(); |
| 21 | void executeBlockingSpecialChars(); |
| 22 | void executeBlockingWithEnv(); |
| 23 | void executeBlockingWithEnvEmpty(); |
| 24 | void executeBlockingWithEnvSetsVariable(); |
| 25 | void executeBlockingTwoArgOverload(); |
| 26 | void executeBlockingConstQStringRef(); |
| 27 | #endif |
| 28 | void executeBlockingNotFound(); |
| 29 | void executeBlockingGpgVersion(); |
| 30 | void gpgSupportsEd25519(); |
| 31 | void getDefaultKeyTemplate(); |
| 32 | void executeBlockingGpgKillAgent(); |
| 33 | void resolveGpgconfCommand(); |
| 34 | void executeBlockingWithEnvNotFound(); |
| 35 | }; |
| 36 | |
| 37 | #ifndef Q_OS_WIN |
| 38 | void tst_executor::executeBlockingEcho() { |
nothing calls this directly
no outgoing calls
no test coverage detected