1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-02 22:02:39 +02:00

Add content: Go testing your apps (#1724)

* Add content: Go testing your apps

Put a little description and some free content.

* Update content/roadmaps/109-golang/content/108-go-testing-your-apps.md

Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>
This commit is contained in:
Yusuf Malikul Mulki
2022-09-10 15:23:19 +07:00
committed by GitHub
parent d2378767f8
commit 3f54bdf297

View File

@@ -1 +1,8 @@
# Go testing your apps
# Testing Go Code
Go has a built-in testing command that we can use to test our program.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://go.dev/doc/tutorial/add-a-test'>Official Go Tutorial: Add a test</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://gobyexample.com/testing'>Go by Example: Testing</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://yourbasic.org/golang/table-driven-unit-test/'>YourBasic Go: Table-driven unit tests</BadgeLink>