General Notes about Go
Apr 6, 2023
General Notes about Go Testing run your test in parallel func TestMyFunction (t *testing.T) { t.Parallel() ... } MacOS Linux Windows
General Notes about Go Testing run your test in parallel func TestMyFunction (t *testing.T) { t.Parallel() ... } MacOS Linux Windows
Unit Testing C functions The most simple framework <check.h> here some examples: void main(void) { write(1,"hola\n",5); }