On Thu, 2020-04-23 at 14:41 +0300, drug via Digitalmars-d-learn wrote:
>
[…]
> Did you try `dub test -- -s`?
Oh f###, that is about the only combination I didn't try. :-(
Thanks. Problem solved. :-)
Not sure about the Fixture proposal, I will research and cogitate
further.
--
Russel.
===
23.04.2020 14:01, Russel Winder пишет:
Hi,
I need to start a process before the tests run, and terminate it after
the tests run. A module with a shared static constructor and shared
static destructor sounds like the way of doing this since the
constructor is run before main and the destructor af
23.04.2020 14:41, drug пишет:
terminate it after in ``
terminate it after in `shutdown()`
Hi,
I need to start a process before the tests run, and terminate it after
the tests run. A module with a shared static constructor and shared
static destructor sounds like the way of doing this since the
constructor is run before main and the destructor after main. However I
am using unit-threade