From 3a5eea1f85e6e00f3410867219bfc3df601b1da8 Mon Sep 17 00:00:00 2001 From: Jacob Fitzpatrick <34043417+JacobFitzp@users.noreply.github.com> Date: Fri, 14 Apr 2023 17:34:27 +0100 Subject: [PATCH] Weight conversion --- .github/FUNDING.yml | 2 +- .github/ISSUE_TEMPLATE/config.yml | 6 +- .../fix-php-code-style-issues-pint.yml | 27 -- ...ixer.yml => fix-php-code-style-issues.yml} | 0 .github/workflows/run-tests-pest.yml | 37 --- .../{run-tests-phpunit.yml => run-tests.yml} | 0 CHANGELOG.md | 2 +- LICENSE.md | 2 +- README.md | 70 +++-- composer.json | 29 +- configure.php | 287 ------------------ phpunit.xml.dist | 2 +- src/SkeletonClass.php | 7 - src/Units/AbstractUnit.php | 74 +++++ src/Units/Gram.php | 8 + src/Units/Kilogram.php | 8 + src/Units/Milligram.php | 8 + src/Units/Ounce.php | 8 + src/Units/Pound.php | 8 + src/Units/Stone.php | 8 + src/Units/Ton.php | 8 + tests/ConversionTest.php | 79 +++++ tests/ExampleTestPest.php | 5 - tests/ExampleTestPhpunit.php | 9 - tests/Pest.php | 1 - 25 files changed, 275 insertions(+), 420 deletions(-) delete mode 100644 .github/workflows/fix-php-code-style-issues-pint.yml rename .github/workflows/{fix-php-code-style-issues-cs-fixer.yml => fix-php-code-style-issues.yml} (100%) delete mode 100644 .github/workflows/run-tests-pest.yml rename .github/workflows/{run-tests-phpunit.yml => run-tests.yml} (100%) delete mode 100644 configure.php delete mode 100755 src/SkeletonClass.php create mode 100644 src/Units/AbstractUnit.php create mode 100644 src/Units/Gram.php create mode 100644 src/Units/Kilogram.php create mode 100644 src/Units/Milligram.php create mode 100644 src/Units/Ounce.php create mode 100644 src/Units/Pound.php create mode 100644 src/Units/Stone.php create mode 100644 src/Units/Ton.php create mode 100644 tests/ConversionTest.php delete mode 100644 tests/ExampleTestPest.php delete mode 100644 tests/ExampleTestPhpunit.php delete mode 100644 tests/Pest.php diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index c68765b..bd3648a 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1 +1 @@ -github: :vendor_name +github: JacobFitzp diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 96701be..3025eea 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,11 +1,11 @@ blank_issues_enabled: false contact_links: - name: Ask a question - url: https://github.com/:vendor_name/:package_name/discussions/new?category=q-a + url: https://github.com/JacobFitzp/weight-conversions/discussions/new?category=q-a about: Ask the community for help - name: Request a feature - url: https://github.com/:vendor_name/:package_name/discussions/new?category=ideas + url: https://github.com/JacobFitzp/weight-conversions/discussions/new?category=ideas about: Share ideas for new features - name: Report a security issue - url: https://github.com/:vendor_name/:package_name/security/policy + url: https://github.com/JacobFitzp/weight-conversions/security/policy about: Learn how to notify us for sensitive bugs diff --git a/.github/workflows/fix-php-code-style-issues-pint.yml b/.github/workflows/fix-php-code-style-issues-pint.yml deleted file mode 100644 index 2f32b5f..0000000 --- a/.github/workflows/fix-php-code-style-issues-pint.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Fix PHP code style issues - -on: - push: - paths: - - '**.php' - -permissions: - contents: write - -jobs: - php-code-styling: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v3 - with: - ref: ${{ github.head_ref }} - - - name: Fix PHP code style issues - uses: aglipanci/laravel-pint-action@1.0.0 - - - name: Commit changes - uses: stefanzweifel/git-auto-commit-action@v4 - with: - commit_message: Fix styling diff --git a/.github/workflows/fix-php-code-style-issues-cs-fixer.yml b/.github/workflows/fix-php-code-style-issues.yml similarity index 100% rename from .github/workflows/fix-php-code-style-issues-cs-fixer.yml rename to .github/workflows/fix-php-code-style-issues.yml diff --git a/.github/workflows/run-tests-pest.yml b/.github/workflows/run-tests-pest.yml deleted file mode 100644 index 25ca553..0000000 --- a/.github/workflows/run-tests-pest.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Tests - -on: [push, pull_request] - -jobs: - test: - runs-on: ${{ matrix.os }} - strategy: - fail-fast: true - matrix: - os: [ubuntu-latest, windows-latest] - php: [8.2, 8.1] - stability: [prefer-lowest, prefer-stable] - - name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }} - - steps: - - name: Checkout code - uses: actions/checkout@v3 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php }} - extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo - coverage: none - - - name: Setup problem matchers - run: | - echo "::add-matcher::${{ runner.tool_cache }}/php.json" - echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" - - - name: Install dependencies - run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction - - - name: Execute tests - run: vendor/bin/pest diff --git a/.github/workflows/run-tests-phpunit.yml b/.github/workflows/run-tests.yml similarity index 100% rename from .github/workflows/run-tests-phpunit.yml rename to .github/workflows/run-tests.yml diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d01146..e8227a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ # Changelog -All notable changes to `:package_name` will be documented in this file. +All notable changes to `weight-conversions` will be documented in this file. diff --git a/LICENSE.md b/LICENSE.md index 58c9ad4..7336ac9 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) :vendor_name +Copyright (c) JacobFitzp Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index da3e831..4445043 100644 --- a/README.md +++ b/README.md @@ -1,41 +1,59 @@ -# :package_description +# PHP Weight Conversions -[![Latest Version on Packagist](https://img.shields.io/packagist/v/:vendor_slug/:package_slug.svg?style=flat-square)](https://packagist.org/packages/:vendor_slug/:package_slug) -[![Tests](https://img.shields.io/github/actions/workflow/status/:vendor_slug/:package_slug/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/:vendor_slug/:package_slug/actions/workflows/run-tests.yml) -[![Total Downloads](https://img.shields.io/packagist/dt/:vendor_slug/:package_slug.svg?style=flat-square)](https://packagist.org/packages/:vendor_slug/:package_slug) - ---- -This package can be used as to scaffold a framework agnostic package. Follow these steps to get started: +[![Latest Version on Packagist](https://img.shields.io/packagist/v/jacobfitzp/weight-conversions.svg?style=flat-square)](https://packagist.org/packages/jacobfitzp/weight-conversions) +[![Tests](https://img.shields.io/github/actions/workflow/status/jacobfitzp/weight-conversions/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/jacobfitzp/weight-conversions/actions/workflows/run-tests.yml) +[![Total Downloads](https://img.shields.io/packagist/dt/jacobfitzp/weight-conversions.svg?style=flat-square)](https://packagist.org/packages/jacobfitzp/weight-conversions) -1. Press the "Use template" button at the top of this repo to create a new repo with the contents of this skeleton -2. Run "php ./configure.php" to run a script that will replace all placeholders throughout all the files -3. Have fun creating your package. -4. If you need help creating a package, consider picking up our Laravel Package Training video course. ---- - -This is where your description should go. Try and limit it to a paragraph or two. Consider adding a small example. - -## Support us - -[](https://spatie.be/github-ad-click/:package_name) - -We invest a lot of resources into creating [best in class open source packages](https://spatie.be/open-source). You can support us by [buying one of our paid products](https://spatie.be/open-source/support-us). - -We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on [our contact page](https://spatie.be/about-us). We publish all received postcards on [our virtual postcard wall](https://spatie.be/open-source/postcards). +Simple PHP package to convert between different units of weight measurement. ## Installation You can install the package via composer: ```bash -composer require :vendor_slug/:package_slug +composer require jacobfitzp/weight-conversions ``` ## Usage ```php -$skeleton = new VendorName\Skeleton(); -echo $skeleton->echoPhrase('Hello, VendorName!'); +// Create a new measurement unit +$kilograms = new Kilogram(); + +// Set weight amount +// Can also be passed to the constructor +$kilograms->setAmount(5.75); + +// Convert to a different unit type +$ounce = $kilograms->to(Ounce::class); + +// Get weight amount +$ounce->getAmount(); +``` + +Supported measurement units: + +```php +// Gram +\JacobFitzp\WeightConversions\Units\Gram::class; + +// Kilogram +\JacobFitzp\WeightConversions\Units\Kilogram::class; + +// Milligram +\JacobFitzp\WeightConversions\Units\Milligram::class; + +// Ounce +\JacobFitzp\WeightConversions\Units\Ounce::class; + +// Pound +\JacobFitzp\WeightConversions\Units\Pound::class; + +// Stone +\JacobFitzp\WeightConversions\Units\Stone::class; + +// Ton +\JacobFitzp\WeightConversions\Units\Ton::class; ``` ## Testing @@ -58,7 +76,7 @@ Please review [our security policy](../../security/policy) on how to report secu ## Credits -- [:author_name](https://github.com/:author_username) +- [Jacob Fitzpatrick](https://github.com/JacobFitzp) - [All Contributors](../../contributors) ## License diff --git a/composer.json b/composer.json index 98297a1..9e3f386 100644 --- a/composer.json +++ b/composer.json @@ -1,16 +1,16 @@ { - "name": ":vendor_slug/:package_slug", - "description": ":package_description", + "name": "jacobfitzp/weight-conversions", + "description": "This is my package weight-conversions", "keywords": [ - ":vendor_name", - ":package_slug" + "JacobFitzp", + "weight-conversions" ], - "homepage": "https://github.com/:vendor_slug/:package_slug", + "homepage": "https://github.com/jacobfitzp/weight-conversions", "license": "MIT", "authors": [ { - "name": ":author_name", - "email": "author@domain.com", + "name": "Jacob Fitzpatrick", + "email": "contact@jacobfitzp.me", "role": "Developer" } ], @@ -18,28 +18,29 @@ "php": "^8.1" }, "require-dev": { - :require_dev_testing, - :require_dev_codestyle, + "phpunit/phpunit": "^9.5", + "friendsofphp/php-cs-fixer": "^3.13", "spatie/ray": "^1.28" }, "autoload": { "psr-4": { - "VendorName\\Skeleton\\": "src" + "JacobFitzp\\WeightConversions\\": "src" } }, "autoload-dev": { "psr-4": { - "VendorName\\Skeleton\\Tests\\": "tests" + "JacobFitzp\\WeightConversions\\Tests\\": "tests" } }, "scripts": { - :scripts_testing, - :scripts_codestyle + "test": "vendor/bin/phpunit", + "test-coverage": "vendor/bin/phpunit --coverage", + "format": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --allow-risky=yes" }, "config": { "sort-packages": true, "allow-plugins": { - :plugins_testing, + "phpstan/extension-installer": true } }, diff --git a/configure.php b/configure.php deleted file mode 100644 index 393642c..0000000 --- a/configure.php +++ /dev/null @@ -1,287 +0,0 @@ -#!/usr/bin/env php - $option === $default ? strtoupper($option) : $option, - $options, - )); - - $answer = ask("{$question} ({$suggestions})"); - - $validOptions = implode(', ', $options); - - while (! in_array($answer, $options)) { - if ($default && $answer === '') { - $answer = $default; - - break; - } - - writeln(PHP_EOL."Please pick one of the following options: {$validOptions}"); - - $answer = ask("{$question} ({$suggestions})"); - } - - if (! $answer) { - $answer = $default; - } - - return $answer; -} - -function confirm(string $question, bool $default = false): bool -{ - $answer = ask($question.' ('.($default ? 'Y/n' : 'y/N').')'); - - if (! $answer) { - return $default; - } - - return strtolower($answer) === 'y'; -} - -function writeln(string $line): void -{ - echo $line.PHP_EOL; -} - -function run(string $command): string -{ - return trim(shell_exec($command)); -} - -function str_after(string $subject, string $search): string -{ - $pos = strrpos($subject, $search); - - if ($pos === false) { - return $subject; - } - - return substr($subject, $pos + strlen($search)); -} - -function slugify(string $subject): string -{ - return strtolower(trim(preg_replace('/[^A-Za-z0-9-]+/', '-', $subject), '-')); -} - -function title_case(string $subject): string -{ - return str_replace(' ', '', ucwords(str_replace(['-', '_'], ' ', $subject))); -} - -function replace_in_file(string $file, array $replacements): void -{ - $contents = file_get_contents($file); - - file_put_contents( - $file, - str_replace( - array_keys($replacements), - array_values($replacements), - $contents - ) - ); -} - -function removeReadmeParagraphs(string $file): void -{ - $contents = file_get_contents($file); - - file_put_contents( - $file, - preg_replace('/.*/s', '', $contents) ?: $contents - ); -} - -function determineSeparator(string $path): string -{ - return str_replace('/', DIRECTORY_SEPARATOR, $path); -} - -function replaceForWindows(): array -{ - return preg_split('/\\r\\n|\\r|\\n/', run('dir /S /B * | findstr /v /i .git\ | findstr /v /i vendor | findstr /v /i '.basename(__FILE__).' | findstr /r /i /M /F:/ ":author :vendor :package VendorName skeleton vendor_name vendor_slug author@domain.com"')); -} - -function replaceForAllOtherOSes(): array -{ - return explode(PHP_EOL, run('grep -E -r -l -i ":author|:vendor|:package|VendorName|skeleton|vendor_name|vendor_slug|author@domain.com" --exclude-dir=vendor ./* ./.github/* | grep -v '.basename(__FILE__))); -} - -function setupTestingLibrary(string $testingLibrary): void -{ - if ($testingLibrary === 'pest') { - unlink(__DIR__.'/tests/ExampleTestPhpunit.php'); - unlink(__DIR__.'/.github/workflows/run-tests-phpunit.yml'); - - rename( - from: __DIR__.'/tests/ExampleTestPest.php', - to: __DIR__.'/tests/ExampleTest.php' - ); - - rename( - from: __DIR__.'/.github/workflows/run-tests-pest.yml', - to: __DIR__.'/.github/workflows/run-tests.yml' - ); - - replace_in_file(__DIR__.'/composer.json', [ - ':require_dev_testing' => '"pestphp/pest": "^1.20"', - ':scripts_testing' => '"test": "vendor/bin/pest", - "test-coverage": "vendor/bin/pest --coverage"', - ':plugins_testing' => '"pestphp/pest-plugin": true', - ]); - } elseif ($testingLibrary === 'phpunit') { - unlink(__DIR__.'/tests/ExampleTestPest.php'); - unlink(__DIR__.'/tests/Pest.php'); - unlink(__DIR__.'/.github/workflows/run-tests-pest.yml'); - - rename( - from: __DIR__.'/tests/ExampleTestPhpunit.php', - to: __DIR__.'/tests/ExampleTest.php' - ); - - rename( - from: __DIR__.'/.github/workflows/run-tests-phpunit.yml', - to: __DIR__.'/.github/workflows/run-tests.yml' - ); - - replace_in_file(__DIR__.'/composer.json', [ - ':require_dev_testing' => '"phpunit/phpunit": "^9.5"', - ':scripts_testing' => '"test": "vendor/bin/phpunit", - "test-coverage": "vendor/bin/phpunit --coverage"', - ':plugins_testing,' => '', // We need to remove the comma here as well, since there's nothing to add - ]); - } -} - -function setupCodeStyleLibrary(string $codeStyleLibrary): void -{ - if ($codeStyleLibrary === 'pint') { - unlink(__DIR__.'/.github/workflows/fix-php-code-style-issues-cs-fixer.yml'); - - rename( - from: __DIR__.'/.github/workflows/fix-php-code-style-issues-pint.yml', - to: __DIR__.'/.github/workflows/fix-php-code-style-issues.yml' - ); - - replace_in_file(__DIR__.'/composer.json', [ - ':require_dev_codestyle' => '"laravel/pint": "^1.2"', - ':scripts_codestyle' => '"format": "vendor/bin/pint"', - ':plugins_testing' => '', - ]); - - unlink(__DIR__.'/.php-cs-fixer.dist.php'); - } elseif ($codeStyleLibrary === 'cs fixer') { - unlink(__DIR__.'/.github/workflows/fix-php-code-style-issues-pint.yml'); - - rename( - from: __DIR__.'/.github/workflows/fix-php-code-style-issues-cs-fixer.yml', - to: __DIR__.'/.github/workflows/fix-php-code-style-issues.yml' - ); - - replace_in_file(__DIR__.'/composer.json', [ - ':require_dev_codestyle' => '"friendsofphp/php-cs-fixer": "^3.13"', - ':scripts_codestyle' => '"format": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --allow-risky=yes"', - ':plugins_testing' => '', - ]); - } -} - -$gitName = run('git config user.name'); -$authorName = ask('Author name', $gitName); - -$gitEmail = run('git config user.email'); -$authorEmail = ask('Author email', $gitEmail); - -$usernameGuess = explode(':', run('git config remote.origin.url'))[1]; -$usernameGuess = dirname($usernameGuess); -$usernameGuess = basename($usernameGuess); -$authorUsername = ask('Author username', $usernameGuess); - -$vendorName = ask('Vendor name', $authorUsername); -$vendorSlug = slugify($vendorName); -$vendorNamespace = ucwords($vendorName); -$vendorNamespace = ask('Vendor namespace', $vendorNamespace); - -$currentDirectory = getcwd(); -$folderName = basename($currentDirectory); - -$packageName = ask('Package name', $folderName); -$packageSlug = slugify($packageName); - -$className = title_case($packageName); -$className = ask('Class name', $className); -$description = ask('Package description', "This is my package {$packageSlug}"); - -$testingLibrary = askWithOptions( - 'Which testing library do you want to use?', - ['pest', 'phpunit'], - 'pest', -); - -$codeStyleLibrary = askWithOptions( - 'Which code style library do you want to use?', - ['pint', 'cs fixer'], - 'pint', -); - -writeln('------'); -writeln("Author : {$authorName} ({$authorUsername}, {$authorEmail})"); -writeln("Vendor : {$vendorName} ({$vendorSlug})"); -writeln("Package : {$packageSlug} <{$description}>"); -writeln("Namespace : {$vendorNamespace}\\{$className}"); -writeln("Class name : {$className}"); -writeln("Testing library : {$testingLibrary}"); -writeln("Code style library : {$codeStyleLibrary}"); -writeln('------'); - -writeln('This script will replace the above values in all relevant files in the project directory.'); - -if (! confirm('Modify files?', true)) { - exit(1); -} - -$files = (str_starts_with(strtoupper(PHP_OS), 'WIN') ? replaceForWindows() : replaceForAllOtherOSes()); - -foreach ($files as $file) { - replace_in_file($file, [ - ':author_name' => $authorName, - ':author_username' => $authorUsername, - 'author@domain.com' => $authorEmail, - ':vendor_name' => $vendorName, - ':vendor_slug' => $vendorSlug, - 'VendorName' => $vendorNamespace, - ':package_name' => $packageName, - ':package_slug' => $packageSlug, - 'Skeleton' => $className, - ':package_description' => $description, - ]); - - match (true) { - str_contains($file, determineSeparator('src/SkeletonClass.php')) => rename($file, determineSeparator('./src/'.$className.'Class.php')), - str_contains($file, 'README.md') => removeReadmeParagraphs($file), - default => [], - }; -} - -setupTestingLibrary($testingLibrary); -setupCodeStyleLibrary($codeStyleLibrary); - -confirm('Execute `composer install` and run tests?') && run('composer install && composer test'); - -confirm('Let this script delete itself?', true) && unlink(__FILE__); diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 3bbe22a..d3efee4 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -19,7 +19,7 @@ verbose="true" > - + tests diff --git a/src/SkeletonClass.php b/src/SkeletonClass.php deleted file mode 100755 index dcf362c..0000000 --- a/src/SkeletonClass.php +++ /dev/null @@ -1,7 +0,0 @@ - + */ +abstract class AbstractUnit +{ + /** + * Amount relative to one kilogram + */ + public const RELATIVE_TO_KG = 1; + + /** + * Amount in kilograms + * Used as a basis for all conversions + * + * @var float|int + */ + protected float $amountInKilograms = 0; + + public function __construct(protected float $amount = 0) + { + $this->calculateAmountInKilograms(); + } + + /** + * Get weight amount for this unit + * + * @return float + */ + public function getAmount(): float + { + return $this->amount; + } + + /** + * Set weight amount for this unit + * + * @param float $amount + * @return $this + */ + public function setAmount(float $amount): self + { + $this->amount = $amount; + $this->calculateAmountInKilograms(); + + return $this; + } + + /** + * Convert to another unit + * + * @param class-string $unitType + * @return AbstractUnit + */ + public function to(string $unitType): AbstractUnit + { + // Convert the amount in kilograms to the new unit type + return new $unitType($unitType::RELATIVE_TO_KG * $this->amountInKilograms); + } + + /** + * Calculate the amount in kilograms. + * This is used as the basis for all conversions + * + * @return void + */ + protected function calculateAmountInKilograms(): void + { + $this->amountInKilograms = self::RELATIVE_TO_KG * $this->amount; + } +} diff --git a/src/Units/Gram.php b/src/Units/Gram.php new file mode 100644 index 0000000..aac9401 --- /dev/null +++ b/src/Units/Gram.php @@ -0,0 +1,8 @@ +assertEquals(2.3, $pound->getAmount()); + } + + public function test_it_can_set_amount(): void + { + $pound = new Pound(2.3); + $pound->setAmount(7.3); + + $this->assertEquals(7.3, $pound->getAmount()); + } + + /** + * @dataProvider conversionTestCases + */ + public function test_it_can_convert(\Closure $from, string $to, float $expected): void + { + $converted = $from()->to($to); + + $this->assertInstanceOf($to, $converted); + $this->assertEquals($expected, $converted->getAmount()); + } + + public function conversionTestCases(): \Generator + { + yield 'Kilogram to Gram' => [ + fn () => new Kilogram(5), + Gram::class, + 5000, + ]; + + yield 'Kilogram to Milligram' => [ + fn () => new Kilogram(6.23), + Milligram::class, + 6230000, + ]; + + yield 'Kilogram to Ounce' => [ + fn () => new Kilogram(4.35), + Ounce::class, + 153.4419, + ]; + + yield 'Kilogram to Pound' => [ + fn () => new Kilogram(2.87), + Pound::class, + 6.327202000000001, + ]; + + yield 'Kilogram to Stone' => [ + fn () => new Kilogram(12.3), + Stone::class, + 1.936881, + ]; + + yield 'Kilogram to Ton' => [ + fn () => new Kilogram(1267), + Ton::class, + 1.2670000000000001, + ]; + } +} diff --git a/tests/ExampleTestPest.php b/tests/ExampleTestPest.php deleted file mode 100644 index 5d36321..0000000 --- a/tests/ExampleTestPest.php +++ /dev/null @@ -1,5 +0,0 @@ -toBeTrue(); -}); diff --git a/tests/ExampleTestPhpunit.php b/tests/ExampleTestPhpunit.php deleted file mode 100644 index fa301e0..0000000 --- a/tests/ExampleTestPhpunit.php +++ /dev/null @@ -1,9 +0,0 @@ -