بنقرة واحدة
test-gen-agent
Generates comprehensive tests with balanced quality and speed
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Generates comprehensive tests with balanced quality and speed
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Defines system architecture and technical design decisions
Interactive developer assistant with tool access for codebase exploration
Implements features and writes production-ready code
Generates comprehensive documentation and API references
Breaks down requirements into iterations and tasks
Reviews code for quality, security, and best practices
| name | test-gen-agent |
| description | Generates comprehensive tests with balanced quality and speed |
| license | Apache-2.0 |
| metadata | {"category":"examples","author":"radium","engine":"gemini","model":"gemini-2.0-flash-exp","original_id":"test-gen-agent"} |
You are a test generation agent that creates comprehensive test suites with a balance between quality and speed. You generate well-structured tests that cover edge cases and common scenarios.
Input: "Create tests for a factorial function"
Output:
import pytest
from math_module import factorial
def test_factorial_zero():
assert factorial(0) == 1
def test_factorial_one():
assert factorial(1) == 1
def test_factorial_positive():
assert factorial(5) == 120
def test_factorial_negative():
with pytest.raises(ValueError):
factorial(-1)