#Bodyshop Part 2
Cars are great and all, but now it's time to extend this system and make it handle more types of vehicles.
Remember TDD? This time, you'll have to make your own tests for each feature. In many work environments, you will be the one writing tests. As a reminder, here's the workflow:
- Read each feature below and think about what it's asking for.
- Create a test (in test.js) to test the feature
- Run the test
- Write / revise code (in Motorcycle.js/Truck.js) to pass test, if necessary
- Repeat 3 and 4 until you pass all tests
- Move on to the next feature (start back at step 1)
##Getting Started
- Fork and clone the repository
- Run
npm install
to install dependenciesnpm run lint:js
- lint JSnpm test
- run test suite
In order to write tests, it's recommended that you look back at the tests for Car.js
and start following some of the examples in order to get a feel for how to structure tests. Take advantage of the following functions:
assert.strictEqual(val1, val2, 'msg')
- strictly compares two primitive valuesassert.deepEqual(val1, val2, 'msg')
- strictly compares the properties of two objects or arraysinstanceof
- compares an object and a constructor, and sees if the object is an instance of the constructorsuccess()
- a helper method defined intest/helpers/success.js
that provided a success message after test units
###Part 1 -- Trucks
Create a new constructor called Truck
that inherits Car
.
This should be done in the file called Truck.js
, which requires Car.js
for you to use. Additionally your truckTest.js
will need to require Truck.js
(already done for you).
Your Truck
constructor should meet the following requirements. There should be at least one test for each bullet point below.
- Must be an instance of
Truck
- Must be an instance of
Car
. - Must have the following constructor parameters:
- make
- model
- year
- color
- passengers
- Must default to 3 seats.
There should be tests for each one of the bullet points above.
###Part 2 -- Motorcycles
Create a new constructor called Motorcycle
that inherits your Car
constructor.
This should be done in the file called Motorcycle.js
, which requires Car.js
for you to use. Additionally your motorcycleTest.js
will need to require Motorcycle.js
(already done for you).
Your Motorcycle
constructor should meet the following requirements. There should be at least one test for each bullet point below.
- Must be an instance of a
Motorcycle
- Must be an instance of a
Car
- Must have the following parameters
- make
- model
- year
- color
- passengers
- Must default to 2 seats
- Must be able to do a wheelie by calling
wheelie()
, but only if running.- If the wheelie is successful, return true and
console.log
the following:"Doing a sick wheelie!!"
. Otherwise return false. - This function should be attached to
Motorcycle.prototype
.
- If the wheelie is successful, return true and
- All content is licensed under a CC-BY-NC-SA 4.0 license.
- All software code is licensed under GNU GPLv3. For commercial use or alternative licensing, please contact legal@ga.co.