Concept Flow - Writing basic test functions
Write test function with prefix Test
Use *testing.T parameter
Call function to test
Check result with if condition
Call t.Error or t.Fail if test fails
Run tests with 'go test'
See pass/fail output
This flow shows how to write a test function in Go, check results, and report failures using the testing package.