Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
TYPO3
Extensions
lock
Commits
90a381b5
Commit
90a381b5
authored
Nov 11, 2017
by
Daniel Hürtgen
Browse files
[FEATURE] NotCallableLockImplemenationBuilderException for Configuration added
parent
bb8fe3e1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Classes/Configuration/Exception/NotCallableLockImplemenationBuilderException.php
0 → 100644
View file @
90a381b5
<?php
namespace
Higidi\Lock\Configuration\Exception
;
/**
* Thrown if lock implementation builder is not callable.
*/
class
NotCallableLockImplemenationBuilderException
extends
InvalidConfigurationException
{
}
Tests/Unit/Configuration/Exception/NotCallableLockImplemenationBuilderExceptionTest.php
0 → 100644
View file @
90a381b5
<?php
namespace
Higidi\Lock\Tests\Unit\Configuration\Exception
;
use
Higidi\Lock\Configuration\Exception\InvalidConfigurationException
;
use
Higidi\Lock\Configuration\Exception\NotCallableLockImplemenationBuilderException
;
use
Nimut\TestingFramework\TestCase\UnitTestCase
;
/**
* Test case for "\Higidi\Lock\Configuration\Exception\NotCallableLockImplemenationBuilderException".
*
* @covers \Higidi\Lock\Configuration\Exception\NotCallableLockImplemenationBuilderException
*/
class
NotCallableLockImplemenationBuilderExceptionTest
extends
UnitTestCase
{
/**
* @test
*/
public
function
itExtendsTheInvalidConfigurationException
()
{
$sut
=
new
NotCallableLockImplemenationBuilderException
();
$this
->
assertInstanceOf
(
InvalidConfigurationException
::
class
,
$sut
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment