What This Does
You wrote the feature. It works on your machine. Now you need tests. But you’re staring at the code thinking “what should I even test?”
This prompt thinks of the edge cases you won’t.
DatBot’s Coding folder includes testing prompts:
- Unit Test Generation - comprehensive test suites
- Code Review - catch issues before tests do
- Debugging Assistant - when tests fail and you don’t know why
- Security Review - tests for security vulnerabilities
Happy path tests are easy. Edge cases are where bugs hide.
How to Access
- Open DatBot and look at the right-hand panel
- Find the Coding folder and click to expand it
- Click Unit Test Generation to use it
- Or click the pencil icon to add your testing framework and conventions
Want the full engineering workflow? Read the complete coding prompts guide.
Use Cases
New features. Generate tests as you code. TDD without the blank page problem.
Legacy code. Adding tests to code you didn’t write. Figure out what it’s supposed to do, then verify it.
API endpoints. Valid requests, missing fields, auth failures, rate limits. Cover the contract.
React components. Renders, user interactions, conditional rendering, accessibility. Testing Library best practices.
Refactoring safety nets. Before you change anything, generate tests that lock in current behavior.