flare / test_controller.py
ciyidogan's picture
Create test_controller.py
42bac5d verified
raw
history blame
377 Bytes
from fastapi import APIRouter
from log import log
router = APIRouter()
@router.post("/run")
def run_all_tests():
log("🚦 Running all test scenarios (mock implementation)")
# Burada test runner fonksiyonunu çağıracağız.
# Şimdilik sadece dummy dönüş yapıyoruz.
return {"status": "success", "message": "Test runner triggered (not yet implemented)"}