Skip to content

Commit

Permalink
Add WebTestCase
Browse files Browse the repository at this point in the history
  • Loading branch information
jdreesen committed Sep 3, 2024
1 parent a354c9b commit 06da42d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog

## v0.13.0
### Features:
- Provide a `WebTestCase` with configurable kernel

### Changes:
- Deprecated `Neusta\Pimcore\TestingFramework\Kernel\TestKernel`
in favor of `Neusta\Pimcore\TestingFramework\TestKernel`
Expand Down
11 changes: 11 additions & 0 deletions src/WebTestCase.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?php
declare(strict_types=1);

namespace Neusta\Pimcore\TestingFramework;

use Neusta\Pimcore\TestingFramework\Internal\ConfigureKernel;

abstract class WebTestCase extends \Pimcore\Test\WebTestCase
{
use ConfigureKernel;
}

0 comments on commit 06da42d

Please sign in to comment.