aedart/athenaeum-testing

Testing utilities built on top of Orchestra Testbench and Codeception

Maintainers

👁 aedart

Package info

github.com/aedart/athenaeum-testing

Homepage

pkg:composer/aedart/athenaeum-testing

Statistics

Installs: 2 571

Dependents: 0

Suggesters: 0

Stars: 0

10.10.0 2026-06-23 06:46 UTC

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

BSD-3-Clause 43002682f8dbdbe1e381d4c37ece750faa68498a

  • Alin Eugen Deac <aedart.woop@gmail.com>

testingAthenaeum

This package is auto-updated.

Last update: 2026-06-23 06:48:14 UTC


README

The Testing package offers various testing utilities, built on top of Codeception and Orchestra Testbench. It allows you to test Laravel specific components, Laravel's application and offers a few utilities for testing the Athenaeum Core Application.

Lastly, this package also comes with Mockery and Faker.

Exaxmple

use \Aedart\Testing\TestCases\UnitTestCase;

class FuelConsumptionTest extends UnitTestCase
{
 /**
 * @test 
 */
 public function calculatesFuel()
 {
 $faker = $this->getFaker();
 $kilometers = $faker->numberBetween(1, 25);

 $consumption = FuelConsumption::calculate($kilometers);
 
 // ... remaining not shown ...
 }
}

Documentation

Please read the official documentation for additional information.

Repository

The mono repository is located at github.com/aedart/athenaeum

Versioning

This package follows Semantic Versioning 2.0.0

License

BSD-3-Clause, Read the LICENSE file included in this package