Groovy & Gradle: JVM Automation and Build Engineering · บทเรียน

ชุดทดสอบและโค้ดทดสอบร่วม

ใช้ปลั๊กอิน java-test-fixtures เพื่อแบ่งปันตัวช่วยทดสอบ ตัวสร้าง และวัตถุจำลองที่นำกลับมาใช้ซ้ำได้ระหว่างโมดูล โดยไม่รั่วไหลไปยังโค้ดระบบจริง

บทเรียน 4 จาก 413 ขั้นตอน

ชุดทดสอบและโค้ดทดสอบร่วม เป็นบทเรียน Groovy & Gradle: JVM Automation and Build Engineering ฟรีบน CoddyKit นี่คือบทเรียนที่ 4 จากทั้งหมด 4 บทเรียน คุณสามารถอ่านบทเรียนทั้งหมดด้านล่างฟรี — จากนั้นลองปฏิบัติด้วยตัวคุณเองในเบราว์เซอร์พร้อมตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7 บทเรียนนี้เป็นส่วนหนึ่งของเส้นทางการเรียน Groovy & Gradle: JVM Automation and Build Engineering และความก้าวหน้าของคุณจะซิงค์ข้ามเว็บและแอป CoddyKit คอร์ส Groovy & Gradle: JVM Automation and Build Engineering มีบทเรียนทั้งหมด 4 บทเรียน

บางส่วนของบทเรียนนี้ยังไม่ได้รับการแปล และแสดงเป็นภาษาอังกฤษ

The Shared Test Code Problem

Multiple modules often need the same test helpers (builders, fakes, fixtures). Copy-pasting them is brittle, and putting them in main code ships test-only classes to production.

Enter Test Fixtures

Gradle ships the java-test-fixtures plugin, which adds a dedicated testFixtures source set whose code can be consumed by other modules tests.

plugins {
    id("java-library")
    id("java-test-fixtures")
}

Source Set Layout

The plugin creates src/testFixtures/java. Classes there are compiled separately and packaged into a fixtures artifact.

  • src/main production
  • src/test tests
  • src/testFixtures shared test helpers

Writing a Fixture

Place reusable builders in the fixtures source set. They can depend on the main classes of the module.

public class UserBuilder {
    public static User aUser() {
        return new User("test", 42);
    }
}

Using Fixtures Inside the Module

The modules own tests automatically see its fixtures, no extra configuration needed.

@Test
void usesFixture() {
    User u = UserBuilder.aUser();
    assertEquals(42, u.getId());
}

Consuming Fixtures Across Modules

Another module declares a dependency on the fixtures using the testFixtures() helper.

dependencies {
    testImplementation(testFixtures(project(":core")))
}

Fixture Dependencies

Fixtures can declare their own dependencies with the testFixturesImplementation configuration, kept separate from production deps.

dependencies {
    testFixturesImplementation("org.assertj:assertj-core:3.25.0")
}

Why Not Just Use main?

Putting test helpers in main leaks them into the published JAR and the production classpath, increasing size and risk. Fixtures keep them isolated.

Publishing Fixtures

The fixtures artifact can be published alongside the main JAR, so downstream consumers in other repositories reuse them too.

gradle publish

Comparison with a Separate Module

You could create a standalone test-helpers module, but fixtures avoid an extra module, keep helpers next to the code they support, and use a clear naming convention.

Best Practices

Keep fixtures focused:

  • Only put genuinely reusable helpers here
  • Avoid leaking fixtures into main accidentally
  • Name builders/fakes clearly

Quick Check

Test your understanding of test fixtures.

Recap

You learned test fixtures:

  • Apply java-test-fixtures
  • Put shared helpers in src/testFixtures
  • Consume with testFixtures(project(...))
  • Keeps test-only code out of production artifacts
เริ่มต้นได้ฟรี

เรียนรู้ Groovy ด้วย AI tutor — ฟรี

เขียนและเรียกใช้โค้ดจริงในเบราว์เซอร์ของคุณ รับความช่วยเหลือทันทีจาก AI tutor 24/7 และเรียนรู้ต่อจากที่คุณหยุดบนเว็บหรือในแอป

คอร์ส
12
บทเรียน
48

คำถามที่พบบ่อย

บทเรียน “ชุดทดสอบและโค้ดทดสอบร่วม” ฟรีหรือไม่

ใช่ — ข้อความเต็มของ “ชุดทดสอบและโค้ดทดสอบร่วม” ฟรีให้อ่านที่นี่บนเว็บ เพื่อปฏิบัติแบบโต้ตอบ (ตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7) และปลดล็อคส่วนที่เหลือของคอร์ส Groovy & Gradle: JVM Automation and Build Engineering ให้อัปเกรดเป็น CoddyKit PRO คอร์ส Groovy & Gradle: JVM Automation and Build Engineering มีบทเรียนทั้งหมด 4 บทเรียน

คุณจะเรียนรู้อะไรในบทเรียน “ชุดทดสอบและโค้ดทดสอบร่วม”

ใช้ปลั๊กอิน java-test-fixtures เพื่อแบ่งปันตัวช่วยทดสอบ ตัวสร้าง และวัตถุจำลองที่นำกลับมาใช้ซ้ำได้ระหว่างโมดูล โดยไม่รั่วไหลไปยังโค้ดระบบจริง คุณปฏิบัติ Groovy & Gradle: JVM Automation and Build Engineering ด้วยโค้ดที่ใช้งานได้จริงที่คุณเรียกใช้โดยตรงในเบราว์เซอร์ และติวเตอร์ AI ตลอด 24/7 ตอบคำถามของคุณขณะที่คุณไปผ่านบทเรียน

คุณต้องมีประสบการณ์ก่อนที่จะเริ่มเรียน Groovy & Gradle: JVM Automation and Build Engineering หรือไม่

ไม่จำเป็นต้องมีประสบการณ์มาก่อน Groovy & Gradle: JVM Automation and Build Engineering บน CoddyKit ออกแบบมาสำหรับผู้เริ่มต้นไปจนถึงผู้เรียนขั้นสูง คุณสามารถเริ่มต้นที่นี่หรือเริ่มจากตัวแรกและเรียนด้วยความเร็วของคุณเอง นี่คือบทเรียนที่ 4 จากทั้งหมด 4 บทเรียน

บทเรียน “ชุดทดสอบและโค้ดทดสอบร่วม” ใช้เวลานานแค่ไหน

บทเรียน CoddyKit ส่วนใหญ่ใช้เวลาประมาณ 5–10 นาที แต่ละบทเรียนจึงสั้นและเป็นแบบโต้ตอบ คุณสามารถก้าวหน้าอย่างต่อเนื่องและกลับมาเรียนต่อจากตรงที่เพิ่งหยุดบนเว็บและแอปได้เลย

ฉันเขียนและรันโค้ดในบทเรียน Groovy & Gradle: JVM Automation and Build Engineering นี้ได้ไหม

ได้ บทเรียน Groovy & Gradle: JVM Automation and Build Engineering ทุกบทมีตัวแก้ไขโค้ดในตัว คุณจึงเขียนและรันโค้ดจริงได้เลยในเบราว์เซอร์ และได้รับข้อเสนอแนะจาก AI ในทันที — ไม่ต้องติดตั้งในเครื่องของคุณ

บทเรียนทั้งหมดในหลักสูตรนี้

  1. การทดสอบหน่วยและการทดสอบการเชื่อมต่อ
  2. รายงานการทดสอบและการกรอง
  3. ความครอบคลุมโค้ดและการวิเคราะห์แบบสถิต
  4. ชุดทดสอบและโค้ดทดสอบร่วม
← กลับไปที่ Groovy & Gradle: JVM Automation and Build Engineering