gessyken/laravel-test-accelerator

A powerful Laravel package to accelerate the development and testing process of your applications

Fund package maintenance!
gessyken

Installs: 4

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 0

Forks: 0

Open Issues: 2

pkg:composer/gessyken/laravel-test-accelerator

v1.0.0 2025-10-22 18:17 UTC

README

Latest Version on Packagist GitHub Tests Action Status Total Downloads

A Laravel package that accelerates test development by automatically generating tests, analyzing code coverage, and providing performance insights.

Features

  • Automatic Test Generation - Generate unit and feature tests automatically
  • Code Coverage Analysis - Analyze test coverage with detailed reports
  • Performance Benchmarking - Identify slow tests and performance bottlenecks
  • AI Integration - Generate intelligent test cases using AI (OpenAI, Anthropic)
  • CLI Commands - Easy-to-use Artisan commands for all features

Installation

composer require gessyken/laravel-test-accelerator --dev

Publish the configuration file:

php artisan vendor:publish --tag="laravel-test-accelerator-config"

Usage

Generate Tests

# Generate tests for a specific file
php artisan test:generate app/Models/User.php

# Generate tests for a directory
php artisan test:generate app/Services/

# Use AI to generate smarter tests
php artisan test:generate app/Models/User.php --ai

Analyze Coverage

# Basic coverage analysis
php artisan test:coverage

# Generate HTML report
php artisan test:coverage --report

# Set minimum threshold
php artisan test:coverage --threshold=80

Performance Benchmark

# Analyze test performance
php artisan test:benchmark

# Custom thresholds
php artisan test:benchmark --slow-threshold=2000 --memory-threshold=2048

Configuration

Add these variables to your .env file for AI features:

TEST_ACCELERATOR_AI_PROVIDER=openai
TEST_ACCELERATOR_AI_API_KEY=your_api_key_here
TEST_ACCELERATOR_AI_MODEL=gpt-4

Requirements

  • PHP 8.4+
  • Laravel 12+
  • Composer 2+

Testing

composer test

License

The MIT License (MIT). Please see License File for more information.

Author

Aurel KENNE