بنقرة واحدة
swift-tdd-workflow
Enforces test-driven development for Swift code using XCTest or Swift Testing.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Enforces test-driven development for Swift code using XCTest or Swift Testing.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Backend testing patterns — API request construction, response verification, database state checks, error handling testing, and adaptive tool detection.
Frontend testing patterns using Playwright — navigation, interaction, assertions, screenshots on failure, and common UI testing scenarios.
Test report format with QA-XXX issue IDs compatible with code-review plugin. Defines report structure, severity levels, issue format with canonical fields, and detailed results.
Test plan structure, naming conventions, edge case generation rules, and file saving conventions for QA test plans.
Enforces AppVerk Swift coding standards across all code.
Structured concurrency and thread safety patterns in modern Swift.
| name | swift-tdd-workflow |
| description | Enforces test-driven development for Swift code using XCTest or Swift Testing. |
| activation | Load when writing tests, fixing bugs, or refactoring Swift code |
Enforces test-driven development for Swift code.
Testing or has .swift-testing in Package.swift → use Swift Testing.XCTestCase.setUp() and tearDown() for fresh state per test.XCTAssertEqual, XCTAssertTrue, XCTAssertThrowsError.async and use await.@Test.#expect(actual == expected) for assertions.@Suite.@Test("user service returns cached user").tearDown / deinit.URLSession; wrap it in a protocol and mock that).