Re: [go-nuts] Is go test the wrong tool to use for a pure test harness?

2023-08-13 Thread dave bronte
I didn't know that. That's the glaringly obvious thing that I was looking for that wasn't obvious to me! Thank you! On Sunday, August 13, 2023 at 6:37:29 PM UTC+1 Sean Liao wrote: > you can compile a test binary with `go test -c` and execute it later > > - sean > > On Sun, Aug 13, 2023,

Re: [go-nuts] Is go test the wrong tool to use for a pure test harness?

2023-08-13 Thread 'Sean Liao' via golang-nuts
you can compile a test binary with `go test -c` and execute it later - sean On Sun, Aug 13, 2023, 18:28 dave bronte wrote: > Forgive me for what might at first glance look like a provocative subject > line - it's not meant to be. > > The team that I work in has been asked to develop a system

[go-nuts] Is go test the wrong tool to use for a pure test harness?

2023-08-13 Thread dave bronte
Forgive me for what might at first glance look like a provocative subject line - it's not meant to be. The team that I work in has been asked to develop a system that will test a web service. We won't have access to the source for the web service so we're going to need to test it in its