Go R1 Day 51
progress🔗
- Did iteration exercise, however, I skipped ahead and did
strings.Repeat
instead of iteration because I'm lazy. 😀 - Moved all tests into blackbox test packages.
- Worked through variadiac functions.
- Tweaked my VSCode autotest to run on save.
- Further tweaks to
golanglint-ci
to reduce noise on linting checks.
links🔗
- Iteration
- Power Up Testing
- 5 Simple Tricks
- Moq (didn't use yet, but placeholder for this)
Commits🔗
- fix: use blackbox testing · sheldonhull/learn-go-with-tests-applied@165ef15 · GitHub
- feat: ✅ array sum using for loop · sheldonhull/learn-go-with-tests-applied@6217838 · GitHub
- refactor: ✅ simplify array sum using range · sheldonhull/learn-go-with-tests-applied@1377e11 · GitHub
- refactor: ✅ modify array to use slices for flexible input sizes · sheldonhull/learn-go-with-tests-applied@bea49fc · GitHub
- test: ✅ add test case with new input size for slice · sheldonhull/learn-go-with-tests-applied@9db5d41 · GitHub
- test: ✅ add sumall and test conditions · sheldonhull/learn-go-with-tests-applied@b3ccc10 · GitHub