Skip to content

Commit

Permalink
Add test for NeustaConverterBundle
Browse files Browse the repository at this point in the history
  • Loading branch information
mike4git authored and jdreesen committed Jan 31, 2023
1 parent 001f6dc commit fa4a45f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions tests/NeustaConverterBundleTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

declare(strict_types=1);

namespace Neusta\ConverterBundle\Tests;

use Neusta\ConverterBundle\NeustaConverterBundle;
use PHPUnit\Framework\TestCase;

class NeustaConverterBundleTest extends TestCase
{
public function testThatBundlePathIsCurrentDir(): void
{
self::assertStringEndsWith('src', (new NeustaConverterBundle)->getPath());
}
}

0 comments on commit fa4a45f

Please sign in to comment.