hrodic/php-integration-testing

View on GitHub
src/WithBeforeTestFixtureName.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php declare(strict_types=1);

namespace IntegrationTesting;

interface WithBeforeTestFixtureName
{
    /**
     * PDODatabaseExtension will try to get the fixture name
     *
     * @return string
     */
    public static function getBeforeTestFixtureName(): string;
}