# Testing (Go) > testing package, test tables, benchmarks, examples, coverage, testify, mocking - 22 คำถามสัมภาษณ์ - Mid-Level - [คำถามสัมภาษณ์: Go](https://sharpskill.dev/th/technologies/go/interview-questions.md) ## 1. หลักการตั้งชื่อสำหรับไฟล์ test ใน Go คืออะไร? **คำตอบ** ใน Go ไฟล์ test ต้องมีคำต่อท้าย _test.go และอยู่ใน package เดียวกันกับโค้ดที่ถูกทดสอบ ตัวอย่างเช่น หากต้องการทดสอบ main.go ให้สร้าง main_test.go หลักการนี้ทำให้คำสั่ง go test ค้นพบไฟล์ test โดยอัตโนมัติโดยไม่ต้องตั้งค่าเพิ่มเติม ## 2. ลายเซ็น (signature) ที่ถูกต้องของฟังก์ชัน test ใน Go คืออะไร? **คำตอบ** ฟังก์ชัน test ใน Go ต้องขึ้นต้นด้วย Test รับพารามิเตอร์เพียงตัวเดียวชนิด *testing.T และไม่คืนค่าใด ๆ ชื่อต้องขึ้นต้นด้วยตัวพิมพ์ใหญ่เพื่อให้ถูก export ตัวอย่างเช่น func TestAdd(t *testing.T) พารามิเตอร์ t ใช้รายงานความล้มเหลวด้วย t.Error, t.Fail, t.Fatal เป็นต้น ## 3. ความแตกต่างระหว่าง t.Error และ t.Fatal คืออะไร? **คำตอบ** t.Error ทำเครื่องหมายว่า test ล้มเหลวแต่ยังคงดำเนินการ test ต่อไป ทำให้ตรวจพบข้อผิดพลาดได้หลายรายการ t.Fatal ทำเครื่องหมายว่า test ล้มเหลวและหยุดการดำเนินการของ test ปัจจุบันทันที ใช้ t.Fatal เมื่อเงื่อนไขเบื้องต้นที่สำคัญล้มเหลวและการดำเนินต่อไม่มีความหมาย เช่น setup ล้มเหลวหรือค่า nil ที่ไม่คาดคิด ## มีอีก 19 คำถาม - จะรันเฉพาะ test ที่ชื่อ TestAdd ได้อย่างไร? - table-driven test ใน Go คืออะไร? สมัครฟรี: https://sharpskill.dev/th/login ## หัวข้อสัมภาษณ์ Go อื่นๆ - [พื้นฐาน Go](https://sharpskill.dev/th/technologies/go/interview-questions/go-basics.md): 25 คำถาม, Junior - [โครงสร้างข้อมูล Go](https://sharpskill.dev/th/technologies/go/interview-questions/go-data-structures.md): 20 คำถาม, Junior - [อินเทอร์เฟซใน Go](https://sharpskill.dev/th/technologies/go/interview-questions/go-interfaces.md): 18 คำถาม, Junior - [การจัดการข้อผิดพลาด](https://sharpskill.dev/th/technologies/go/interview-questions/error-handling.md): 20 คำถาม, Junior - [พื้นฐาน Goroutine](https://sharpskill.dev/th/technologies/go/interview-questions/goroutines-basics.md): 20 คำถาม, Junior - [Channels](https://sharpskill.dev/th/technologies/go/interview-questions/channels.md): 22 คำถาม, Junior - [Go Modules](https://sharpskill.dev/th/technologies/go/interview-questions/go-modules.md): 18 คำถาม, Mid-Level - [เซิร์ฟเวอร์ HTTP](https://sharpskill.dev/th/technologies/go/interview-questions/http-server.md): 24 คำถาม, Mid-Level - [ไคลเอนต์ HTTP](https://sharpskill.dev/th/technologies/go/interview-questions/http-client.md): 18 คำถาม, Mid-Level - [การเข้ารหัส JSON](https://sharpskill.dev/th/technologies/go/interview-questions/json-encoding.md): 20 คำถาม, Mid-Level - [Database/SQL](https://sharpskill.dev/th/technologies/go/interview-questions/database-sql.md): 22 คำถาม, Mid-Level - [แพ็กเกจ context](https://sharpskill.dev/th/technologies/go/interview-questions/context-package.md): 20 คำถาม, Mid-Level - [รูปแบบ Concurrency](https://sharpskill.dev/th/technologies/go/interview-questions/concurrency-patterns.md): 24 คำถาม, Mid-Level - [ไพรมิทีฟการซิงโครไนซ์](https://sharpskill.dev/th/technologies/go/interview-questions/sync-primitives.md): 22 คำถาม, Mid-Level - [เฟรมเวิร์กเว็บ Go](https://sharpskill.dev/th/technologies/go/interview-questions/go-web-frameworks.md): 20 คำถาม, Mid-Level - [การออกแบบ REST API](https://sharpskill.dev/th/technologies/go/interview-questions/rest-api-design.md): 20 คำถาม, Mid-Level - [gRPC](https://sharpskill.dev/th/technologies/go/interview-questions/grpc.md): 22 คำถาม, Mid-Level - [Reflection](https://sharpskill.dev/th/technologies/go/interview-questions/reflection.md): 20 คำถาม, Senior - [การจัดการหน่วยความจำ](https://sharpskill.dev/th/technologies/go/interview-questions/memory-management.md): 24 คำถาม, Senior - [การเพิ่มประสิทธิภาพการทำงาน](https://sharpskill.dev/th/technologies/go/interview-questions/performance-optimization.md): 22 คำถาม, Senior - [Generics](https://sharpskill.dev/th/technologies/go/interview-questions/generics.md): 20 คำถาม, Senior - [Go Design Patterns](https://sharpskill.dev/th/technologies/go/interview-questions/design-patterns.md): 24 คำถาม, Senior - [Microservices](https://sharpskill.dev/th/technologies/go/interview-questions/microservices.md): 24 คำถาม, Senior - [ความปลอดภัยและการยืนยันตัวตน](https://sharpskill.dev/th/technologies/go/interview-questions/security-authentication.md): 24 คำถาม, Senior - [Docker & Containerization](https://sharpskill.dev/th/technologies/go/interview-questions/docker-containerization.md): 20 คำถาม, Senior - [Kubernetes Basics](https://sharpskill.dev/th/technologies/go/interview-questions/kubernetes-basics.md): 22 คำถาม, Senior - [Go ขั้นสูง](https://sharpskill.dev/th/technologies/go/interview-questions/advanced-go.md): 20 คำถาม, Senior - [การพัฒนา CLI](https://sharpskill.dev/th/technologies/go/interview-questions/cli-development.md): 20 คำถาม, Senior --- Source: SharpSkill (https://sharpskill.dev), tech interview preparation for your real stack. HTML version of this page: https://sharpskill.dev/th/technologies/go/interview-questions/testing