Intern — Junior
Have you conducted any form of testing in your previous company?
sobes.tech AI
Answer from AI
Yes, at my previous company I participated in various forms of testing code in Go. Mainly, these were unit tests using the standard testing package. I also used integration tests to verify component interactions.
Example of a simple test:
func TestAdd(t *testing.T) {
result := Add(2, 3)
if result != 5 {
t.Errorf("Expected 5, got %d", result)
}
}
Additionally, I used tools for code coverage and ran tests in CI/CD for automatic code quality verification.