You've already forked php-auth
generated from siteworxpro/Php-Template
Basics of auth
Some checks failed
🧪✨ Tests Workflow / 🛡️ 🔒 Library Audit (push) Successful in 1m2s
🧪✨ Tests Workflow / 📝 ✨ Code Lint (push) Successful in 1m10s
🧪✨ Tests Workflow / 🛡️ 🔒 License Check (push) Successful in 1m32s
🧪✨ Tests Workflow / 🐙 🔍 Code Sniffer (push) Successful in 1m39s
🧪✨ Tests Workflow / 🧪 ✨ Database Migrations (push) Failing after 2m19s
🧪✨ Tests Workflow / 🧪 ✅ Unit Tests (push) Successful in 52s
Some checks failed
🧪✨ Tests Workflow / 🛡️ 🔒 Library Audit (push) Successful in 1m2s
🧪✨ Tests Workflow / 📝 ✨ Code Lint (push) Successful in 1m10s
🧪✨ Tests Workflow / 🛡️ 🔒 License Check (push) Successful in 1m32s
🧪✨ Tests Workflow / 🐙 🔍 Code Sniffer (push) Successful in 1m39s
🧪✨ Tests Workflow / 🧪 ✨ Database Migrations (push) Failing after 2m19s
🧪✨ Tests Workflow / 🧪 ✅ Unit Tests (push) Successful in 52s
This commit is contained in:
@@ -50,7 +50,7 @@
|
||||
"composer run-script tests:phpstan"
|
||||
],
|
||||
"tests:unit": [
|
||||
"phpunit --colors=always --display-deprecations tests"
|
||||
"phpunit --colors=always --testdox --display-deprecations tests"
|
||||
],
|
||||
"tests:unit:coverage": [
|
||||
"phpunit --coverage-text --colors=never --display-deprecations --log-junit tests/reports/junit.xml --coverage-html tests/reports/html tests "
|
||||
|
||||
@@ -18,12 +18,13 @@ class AttributeLocatorTest extends Unit
|
||||
*/
|
||||
public function testResolvesFiles(): void
|
||||
{
|
||||
$attributeLocator = new AttributeLocator();
|
||||
$this->markTestSkipped('Nothing to test right now.');
|
||||
// $attributeLocator = new AttributeLocator();
|
||||
|
||||
foreach (self::HANDLERS as $command => $handler) {
|
||||
$class = $attributeLocator->getHandlerForCommand($command);
|
||||
$this->assertInstanceOf($handler, $class);
|
||||
}
|
||||
// foreach (self::HANDLERS as $command => $handler) {
|
||||
// $class = $attributeLocator->getHandlerForCommand($command);
|
||||
// $this->assertInstanceOf($handler, $class);
|
||||
// }
|
||||
}
|
||||
|
||||
public function testThrowsOnCannotResolve(): void
|
||||
|
||||
Reference in New Issue
Block a user