원클릭으로
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 페이지를 검토하고 설치를 진행할 수 있습니다.
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
SOC 직업 분류 기준
| 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)