Moved all old tests to another folder

This commit is contained in:
Netkas 2023-08-30 20:03:19 -04:00
parent 960770d73f
commit 2ad6dfabab
No known key found for this signature in database
GPG key ID: 5DAF58535614062B
15 changed files with 8 additions and 8 deletions

View file

@ -2,10 +2,10 @@
/** @noinspection PhpMissingFieldTypeInspection */
namespace ExampleLibrary;
namespace old_tests\example_project\src\ExampleLibrary;
use ExampleLibrary\Exceptions\FileNotFoundException;
use ExampleLibrary\Objects\Person;
use old_tests\example_project\src\ExampleLibrary\Exceptions\FileNotFoundException;
use old_tests\example_project\src\ExampleLibrary\Objects\Person;
class ExampleLibrary
{
@ -44,7 +44,7 @@
*
* @param int $amount
* @return array
* @throws Exceptions\InvalidNameException
* @throws \old_tests\example_project\src\ExampleLibrary\Exceptions\InvalidNameException
*/
public function generatePeople(int $amount=10): array
{

View file

@ -2,7 +2,7 @@
/** @noinspection PhpPropertyOnlyWrittenInspection */
namespace ExampleLibrary\Exceptions;
namespace old_tests\example_project\src\ExampleLibrary\Exceptions;
use Exception;
use Throwable;

View file

@ -2,7 +2,7 @@
/** @noinspection PhpPropertyOnlyWrittenInspection */
namespace ExampleLibrary\Exceptions;
namespace old_tests\example_project\src\ExampleLibrary\Exceptions;
use Exception;
use Throwable;

View file

@ -1,8 +1,8 @@
<?php
namespace ExampleLibrary\Objects;
namespace old_tests\example_project\src\ExampleLibrary\Objects;
use ExampleLibrary\Exceptions\InvalidNameException;
use old_tests\example_project\src\ExampleLibrary\Exceptions\InvalidNameException;
class Person
{