FizzBuzz is a problem that prints numbers from 1 to n
, but (for our class):
Bob
Cat
BobCat
fizzbuzz/java/jayce-cripe
directory.run.sh
script executable:
chmod +x run.sh
./run.sh 15
FizzBuzz Java Implementation
What is FizzBuzz
FizzBuzz is a problem that prints numbers from 1 to
n
, but (for our class):
Bob
Cat
BobCat
fizzbuzz/java/jayce-cripe
directory.run.sh
script executable:
chmod +x run.sh
./run.sh 15
1 2 Bob 4 Cat Bob 7 8 Bob Cat 11 Bob 13 14 BobCat
fizzbuzz/java/jayce-cripe
directoryrun.sh --test
script executable:
chmod +x run.sh
./run.sh --test
💚 Thanks for using JUnit! Support its development at https://junit.org/sponsoring ╷ ├─ JUnit Platform Suite ✔ ├─ JUnit Jupiter ✔ │ └─ FizzBuzzTest ✔ │ ├─ testNoArguments() ✔ │ └─ testFizzBuzzOutput() ✔ └─ JUnit Vintage ✔ Test run finished after 125 ms [ 4 containers found ] [ 0 containers skipped ] [ 4 containers started ] [ 0 containers aborted ] [ 4 containers successful ] [ 0 containers failed ] [ 2 tests found ] [ 0 tests skipped ] [ 2 tests started ] [ 0 tests aborted ] [ 2 tests successful ] [ 0 tests failed ]
>>>>>>> 5fffd71f5587c99a00d5e100f558b128f2ff09ad