การทดสอบหน่วยและการจำลอง
เขียนการทดสอบหน่วยที่รวดเร็วและแยกอิสระสำหรับตรรกะทางธุรกิจของ Flutter และใช้วัตถุจำลองเพื่อทดสอบโค้ดที่ขึ้นอยู่กับบริการและ API
การทดสอบหน่วยและการจำลอง เป็นบทเรียน Flutter Mobile Development ฟรีบน CoddyKit นี่คือบทเรียนที่ 4 จากทั้งหมด 4 บทเรียน คุณสามารถอ่านบทเรียนทั้งหมดด้านล่างฟรี — จากนั้นลองปฏิบัติด้วยตัวคุณเองในเบราว์เซอร์พร้อมตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7 บทเรียนนี้เป็นส่วนหนึ่งของเส้นทางการเรียน Flutter Mobile Development และความก้าวหน้าของคุณจะซิงค์ข้ามเว็บและแอป CoddyKit คอร์ส Flutter Mobile Development มีบทเรียนทั้งหมด 4 บทเรียน
บางส่วนของบทเรียนนี้ยังไม่ได้รับการแปล และแสดงเป็นภาษาอังกฤษ
The Testing Pyramid
You have seen widget and integration tests. At the base sits the fastest layer: unit tests that verify a single function or class in isolation.
- Many unit tests (fast)
- Fewer widget tests
- Even fewer integration tests (slow)
Anatomy of a Unit Test
A unit test uses test() and expect() from the test package.
import 'package:test/test.dart';
void main() {
test('adds two numbers', () {
expect(2 + 3, equals(5));
});
}Testing a Class
Instantiate the class under test and assert on its behaviour.
test('counter increments', () {
final counter = Counter();
counter.increment();
expect(counter.value, 1);
});Matchers
Matchers express expectations clearly.
equals(x)isTrue/isNullthrowsExceptioncontains(x)
expect(list, contains('apple'));
expect(() => parse('bad'), throwsFormatException);Grouping Tests
Use group() to organize related tests and share setup.
group('Cart', () {
test('starts empty', () { ... });
test('adds items', () { ... });
});setUp & tearDown
setUp runs before each test; tearDown runs after — perfect for fresh fixtures.
late Cart cart;
setUp(() => cart = Cart());
tearDown(() => cart.clear());The Problem of Dependencies
What if your class calls a real API or database? Tests would be slow and flaky. The solution is mocking — replacing dependencies with fakes you control.
Mockito Setup
Add mockito and build_runner, then annotate to generate mocks.
@GenerateMocks([ApiService])
void main() {}
// flutter pub run build_runner buildStubbing Methods
Use when(...).thenReturn(...) to define what a mock returns.
final mockApi = MockApiService();
when(mockApi.fetchUser()).thenAnswer((_) async => User('Ada'));Verifying Interactions
verify confirms a method was called the expected number of times.
await repository.loadUser();
verify(mockApi.fetchUser()).called(1);Testing Async Code
Mark the test body async and await futures, or use the completes matcher.
test('loads data', () async {
final result = await repo.load();
expect(result, isNotEmpty);
});Quick Check
Why would you use a mock in a unit test?
Recap
You learned unit testing and mocking:
- test/expect/matchers and group/setUp
- Mockito to generate mocks
- when().thenReturn and verify().called
- Testing async code
Unit tests give you fast confidence in your business logic.
คำถามที่พบบ่อย
บทเรียน “การทดสอบหน่วยและการจำลอง” ฟรีหรือไม่
ใช่ — ข้อความเต็มของ “การทดสอบหน่วยและการจำลอง” ฟรีให้อ่านที่นี่บนเว็บ เพื่อปฏิบัติแบบโต้ตอบ (ตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7) และปลดล็อคส่วนที่เหลือของคอร์ส Flutter Mobile Development ให้อัปเกรดเป็น CoddyKit PRO คอร์ส Flutter Mobile Development มีบทเรียนทั้งหมด 4 บทเรียน
คุณจะเรียนรู้อะไรในบทเรียน “การทดสอบหน่วยและการจำลอง”
เขียนการทดสอบหน่วยที่รวดเร็วและแยกอิสระสำหรับตรรกะทางธุรกิจของ Flutter และใช้วัตถุจำลองเพื่อทดสอบโค้ดที่ขึ้นอยู่กับบริการและ API คุณปฏิบัติ Flutter Mobile Development ด้วยโค้ดที่ใช้งานได้จริงที่คุณเรียกใช้โดยตรงในเบราว์เซอร์ และติวเตอร์ AI ตลอด 24/7 ตอบคำถามของคุณขณะที่คุณไปผ่านบทเรียน
คุณต้องมีประสบการณ์ก่อนที่จะเริ่มเรียน Flutter Mobile Development หรือไม่
ไม่จำเป็นต้องมีประสบการณ์มาก่อน Flutter Mobile Development บน CoddyKit ออกแบบมาสำหรับผู้เริ่มต้นไปจนถึงผู้เรียนขั้นสูง คุณสามารถเริ่มต้นที่นี่หรือเริ่มจากตัวแรกและเรียนด้วยความเร็วของคุณเอง นี่คือบทเรียนที่ 4 จากทั้งหมด 4 บทเรียน
บทเรียน “การทดสอบหน่วยและการจำลอง” ใช้เวลานานแค่ไหน
บทเรียน CoddyKit ส่วนใหญ่ใช้เวลาประมาณ 5–10 นาที แต่ละบทเรียนจึงสั้นและเป็นแบบโต้ตอบ คุณสามารถก้าวหน้าอย่างต่อเนื่องและกลับมาเรียนต่อจากตรงที่เพิ่งหยุดบนเว็บและแอปได้เลย
ฉันเขียนและรันโค้ดในบทเรียน Flutter Mobile Development นี้ได้ไหม
ได้ บทเรียน Flutter Mobile Development ทุกบทมีตัวแก้ไขโค้ดในตัว คุณจึงเขียนและรันโค้ดจริงได้เลยในเบราว์เซอร์ และได้รับข้อเสนอแนะจาก AI ในทันที — ไม่ต้องติดตั้งในเครื่องของคุณ
บทเรียนทั้งหมดในหลักสูตรนี้
- หลักการทดสอบวิดเจ็ต
- การทดสอบการผสานรวม
- เครื่องมือและเทคนิคการแก้ไขข้อบกพร่อง
- การทดสอบหน่วยและการจำลอง