Go - Skillstak Beginner Boost Week 17 and 18 Notes
Beginner Boost Week 17 and 18 Notes Link to video Don’t forget to set GOBIN=~/.local/bin, GOPRIVATE, CGO_ENABLED=0 Go Testing - Example Tests func ExampleFoo() { foo() // Output: // Foo } The ExampleFoo indicates the test here. It needs to match the name exactly after Example. But it is capitalized. It runs that function and will compare the output to what is specified. It says “see if the program generates this output in std out”. ...