Print the Prime numbers product table based on count ( how many numbers)
PrimeNumber.php : Class for generating prime numbers and its product
PrimeProdTable.php : Used to run from CLI to print the table
./test/PrimeNumberTest.php: Contains unit test for PrimeNumber class based on phpunit test framework.
From CLI just run:
php PrimeProdTable.php --count <pass the count for prime numbers>
Reuirement: phpunit must be installed. Go to test folder and run
phpunit .
or
phpunit PrimeNumberTest.php