Skip to content
forked from jjfiv/CSC212ADTR

Introduction to JUnit with Abstract Data Types.

Notifications You must be signed in to change notification settings

hnc13/CSC212ADTR

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

P5: Testing ADTs

The learning objectives of this assignment are to understand how JUnit works and how to read and write basic tests before we start working on our own data structures.

Due Date: February 28, 2019.

Remember that we will have a midterm that weekend, so don't save it until the last minute!

Rubric

Rubric and Reflection (=15)

You must include a PDF file in your submission that identifies the grade you expect on this assignment based on what you completed.

In addition, you will write 10 statements of either:

  • Accomplishments: things that you understand much better now.
  • Challenges: things that you are still working on understanding.

I will provide direct feedback to your writing.

Program Compiles; Tests Pass (=15)

This includes that your code should be professional.

  • Try to proofread your work like an essay!
  • Find all your println("stuff") statements and remove them, etc.
  • Your code looks intentional: don't just fiddle with it until it works. Reason about it! Sketch out the python by hand and then try translating to Java.
  • Delete commented out code or experiments that don't work out. Make your submission as small as it needs to be.
  • Your code is your own. Respect the honor code.
  • Working with others or helping them debug is acceptable - use your best judgment! Make sure that you know what you're working on.
  • Have comments explaining tricky code!

Test coverage (=60).

There are some intentional bugs in the code and some accidental bugs. See if you can catch them.

ListADT (=20)

Make use of the structure I created for you in makeFullList. The following methods need tests:

  • setIndex
  • addIndex
  • removeBack
  • removeIndex
  • removeFront

Try to understand what's going on with the new errors: BadIndexError, and EmptyListError in particular.

SetADT (=20)

  • size
  • insert
  • contains
  • remove
  • toList
  • toJava

MapADT (=20)

  • put
  • get
  • size
  • remove
  • getKeys
  • getEntries
  • toJava

Coding Challenges (=10 + 10)

Writing code and tests for these methods (see Challenge.java) is worth 10 points, and 10 if you have tests.

  • intersection
  • union
  • wordCount

About

Introduction to JUnit with Abstract Data Types.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%