| 119 | } |
| 120 | |
| 121 | Py::Object UnitTestDialogPy::setStatusText(const Py::Tuple& args) |
| 122 | { |
| 123 | char* pstr = nullptr; |
| 124 | if (!PyArg_ParseTuple(args.ptr(), "s", &pstr)) { |
| 125 | throw Py::Exception(); |
| 126 | } |
| 127 | |
| 128 | UnitTestDialog::instance()->setStatusText(QString::fromLatin1(pstr)); |
| 129 | return Py::None(); |
| 130 | } |
| 131 | |
| 132 | Py::Object UnitTestDialogPy::setProgressFrac(const Py::Tuple& args) |
| 133 | { |
no test coverage detected