1.3-Object-Georienteerd-Programmeren

A plane with passengers

Create a program that lets you board people in an airplane. We’ve already prepared some things for you here so you don’t have to build everything from scratch. You are supposed to build the class Airplane.

The following rules apply for this program:

Now write the full implementation of the program, focusing on adding the following functionality:

Testing

Manual

It is important that software is well tested, so we ask you to think about which situations you need to test. Create an overview of tests that you need tot carry out and test all these situations.

Automated

When you are done with the manual testing you can uncomment all lines in the TestApplication class and run these automatic test as well. They should all pass. If not, try to understand why the test fails and make sure to fix your code.