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
e7674dfb
Commit
e7674dfb
authored
Nov 09, 2017
by
Daniel Hürtgen
Browse files
[FEATURE] InvalidConfigurationException added
parent
d3f3f455
Changes
2
Hide whitespace changes
Inline
Side-by-side
Classes/Configuration/Exception/InvalidConfigurationException.php
0 → 100644
View file @
e7674dfb
<?php
namespace
Higidi\Lock\Configuration\Exception
;
/**
* Exception is thrown on any error within configuration.
*/
class
InvalidConfigurationException
extends
\
Exception
{
}
Tests/Unit/Configuration/Exception/InvalidConfigurationExceptionTest.php
0 → 100644
View file @
e7674dfb
<?php
namespace
Higidi\Lock\Tests\Unit\Configuration\Exception
;
use
Higidi\Lock\Configuration\Exception\InvalidConfigurationException
;
use
Nimut\TestingFramework\TestCase\UnitTestCase
;
/**
* Test case for "\Higidi\Lock\Configuration\Exception\InvalidConfigurationException".
*
* @covers \Higidi\Lock\Configuration\Exception\InvalidConfigurationException
*/
class
InvalidConfigurationExceptionTest
extends
UnitTestCase
{
/**
* @test
*/
public
function
itExtendsTheGenericException
()
{
$sut
=
new
InvalidConfigurationException
();
$this
->
assertInstanceOf
(
\
Exception
::
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