Generate Mocks and Fixtures for Your Automated Tests
A prompt to automatically generate realistic mocks, stubs and data fixtures adapted to your test framework and use cases.
Paste in your AI
Paste this prompt in ChatGPT, Claude or Gemini and customize the variables in brackets.
Tu es un ingénieur qualité logicielle spécialisé en testing. Génère des mocks et fixtures complets pour le contexte suivant : **Langage / Framework de test** : [LANGAGE_ET_FRAMEWORK] (ex : Python/pytest, JavaScript/Jest, TypeScript/Vitest, Java/JUnit) **Entités ou modules à mocker** : [ENTITES_A_MOCKER] (ex : service d'authentification, API de paiement Stripe, base de données PostgreSQL, service d'envoi d'emails) **Cas de test visés** : [CAS_DE_TEST] (ex : succès standard, erreur réseau, timeout, données invalides, réponse vide) Pour chaque entité, fournis : 1. **Fixtures de données** : des jeux de données réalistes (pas de "foo/bar") couvrant les cas nominaux et les cas limites. Utilise des données cohérentes entre elles (IDs référencés, dates logiques, montants plausibles). 2. **Mocks / Stubs** : l'implémentation du mock avec le pattern approprié au framework (mock factory, fixture pytest, jest.fn(), vi.fn(), etc.). Inclus le typage si le langage le supporte. 3. **Scénarios d'erreur** : des mocks configurés pour simuler les erreurs courantes (exceptions, codes HTTP 4xx/5xx, timeouts, données corrompues). 4. **Factory functions** : des fonctions utilitaires pour générer des variations de fixtures avec des overrides partiels (pattern builder ou factory). 5. **Notes d'intégration** : comment brancher ces mocks dans la suite de tests (setup/teardown, injection de dépendances, configuration du test runner). Respecte ces contraintes : - Code prêt à copier-coller, avec imports nécessaires - Nommage clair et conventions du framework - Commentaires expliquant les choix de données - Séparation fixtures / mocks dans des fichiers dédiés si c'est la convention du framework
Why this prompt works
<p>This prompt lets you quickly produce all the test infrastructure your projects need: data fixtures, external service mocks and generation factories. By specifying your <strong>language and test framework</strong>, the AI automatically adapts patterns (pytest fixtures, Jest mocks, Vitest spies, etc.) and naming conventions.</p><p>The key to a good result is describing precisely the <strong>entities to mock</strong>: do not just say "the API", but specify "the Stripe API with charge.create and refund.create endpoints". The more specific you are about the <strong>target test cases</strong>, the more the fixtures will cover your real needs, including often-forgotten edge cases like timeouts or partial responses.</p><p>The generated factory functions prevent data duplication between tests. They follow the <strong>builder/factory pattern</strong> which allows creating variants by overriding only the fields relevant to each test, keeping your tests readable and maintainable.</p>
Use Cases
Expected Output
Ready-to-use code containing fixture files with realistic data, typed mocks for each external service, factory functions with partial overrides, and configured error scenarios — all adapted to the specified test framework.
Learn more
Check the full skill on Prompt Guide to master this technique from A to Z.
View on Prompt Guide📬 Get new prompts every week
Join our newsletter and never miss a prompt.
Similar Prompts
Create Your First API with Express.js
Learn to create your first Express.js REST API from A to Z with pedagogical explanations adapted to beginners.
Generate Precise Regular Expressions with AI
This prompt generates precise and documented regular expressions, tailored to your programming language, with detailed explanations and built-in tests.
Implement Robust Error Handling in Node.js
Create a professional Node.js error handling architecture with custom error classes, centralized middleware, and monitoring.
Design an Application Caching Strategy
Design a complete Redis caching strategy with appropriate patterns, TTL policy, invalidation, and stampede protection.