npx claudepluginhub fujigo-software/f5-framework-claude --plugin f5-coreThis skill is limited to using the following tools:
Comprehensive testing knowledge for building reliable, maintainable software
advanced/chaos-testing.mdadvanced/contract-testing.mdadvanced/mutation-testing.mdadvanced/property-based-testing.mdci-cd/coverage-reporting.mdci-cd/flaky-tests.mdci-cd/test-automation.mde2e-testing/browser-testing.mde2e-testing/e2e-basics.mde2e-testing/mobile-testing.mde2e-testing/visual-regression.mdfundamentals/behavior-driven-development.mdfundamentals/test-driven-development.mdfundamentals/testing-principles.mdfundamentals/testing-pyramid.mdintegration-testing/api-testing.mdintegration-testing/database-testing.mdintegration-testing/external-service-testing.mdintegration-testing/integration-test-basics.mdpatterns/arrange-act-assert.mdProvides cross-language testing patterns including test pyramid, unit/integration/E2E tests, AAA structure, test doubles, naming conventions, and isolation for databases/external services.
Auto-activates to discover and provide access to testing skills for unit, integration, e2e testing, TDD, coverage, mocking, pytest, and Jest workflows.
Provides testing pyramid standards and best practices for UT/IT/ST/E2E tests supporting ISTQB and Industry Pyramid frameworks. Guides writing tests, coverage analysis, strategy, and naming.
Share bugs, ideas, or general feedback.
Comprehensive testing knowledge for building reliable, maintainable software with confidence in deployments.
╱╲
╱ ╲ E2E Tests
╱────╲ (Few, Slow, Expensive)
╱ ╲
╱────────╲ Integration Tests
╱ ╲ (Medium)
╱────────────╲
╱ ╲ Unit Tests
╱________________╲ (Many, Fast, Cheap)
| Test Type | Speed | Scope | Confidence | Cost |
|---|---|---|---|---|
| Unit | Fast (ms) | Single unit | Low-Medium | Low |
| Integration | Medium (s) | Multiple units | Medium-High | Medium |
| E2E | Slow (min) | Full system | High | High |
skills/testing/
├── _index.md
├── fundamentals/
│ ├── testing-pyramid.md
│ ├── test-driven-development.md
│ ├── behavior-driven-development.md
│ └── testing-principles.md
├── unit-testing/
│ ├── unit-test-basics.md
│ ├── mocking-strategies.md
│ ├── test-doubles.md
│ └── assertion-patterns.md
├── integration-testing/
│ ├── integration-test-basics.md
│ ├── database-testing.md
│ ├── api-testing.md
│ └── external-service-testing.md
├── e2e-testing/
│ ├── e2e-basics.md
│ ├── browser-testing.md
│ ├── mobile-testing.md
│ └── visual-regression.md
├── patterns/
│ ├── arrange-act-assert.md
│ ├── given-when-then.md
│ ├── test-fixtures.md
│ ├── factory-patterns.md
│ └── page-object-model.md
├── advanced/
│ ├── property-based-testing.md
│ ├── mutation-testing.md
│ ├── contract-testing.md
│ └── chaos-testing.md
└── ci-cd/
├── test-automation.md
├── coverage-reporting.md
└── flaky-tests.md