/php-string-manipulation-tests

Test cases for students to create a string manipulation library in PHP.

Primary LanguagePHP

PHP string manipulation tests

Test cases for string manipulation.

Prerequisites

Setup

  1. Clone the repository to the desired directory
    git clone https://github.com/pedzed/php-string-manipulation-tests.git
    
  2. Install the Composer dependencies
    composer install
    
  3. Run the unit tests
    ./vendor/bin/phpunit
    

You should see many errors/failures. You should write code, so that all errors will go away.

Note: It is not allowed to touch the /tests folder. You may look at the code, but you may not modify it.