Regression Test Assignment
(Added detailed grading rubric) |
|||
(3 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | {| | + | |
− | + | {{Learning Activity Overview | |
− | + | |title= | |
Regression Test Assignment | Regression Test Assignment | ||
− | | | + | |overview= |
− | + | Participants write unit tests (in [[:Category:Google Test|Google Test]]) to establish reliable regression tests for a C++ class | |
− | Participants write unit tests (in | + | |prerequisites= |
− | | | + | Students should: |
− | + | * Have installed and programmed unit tests with [[:Category:Google Test|Google Test]]. | |
− | + | * Know how to run a coverage analyzer and interpret its results. | |
− | | | + | * Have intermediate knowledge of Git version control. |
− | + | |objectives= | |
− | + | * Write unit tests. | |
− | |} | + | * Use a coverage analysis tool to identify test cases they may be missing. |
+ | |process skills= | ||
+ | }} | ||
− | === Directions | + | === Directions === |
− | ==== Students | + | ==== Students ==== |
'''Overview''' | '''Overview''' | ||
Line 25: | Line 27: | ||
'''Instructions''' | '''Instructions''' | ||
− | + | # Fork the [https://github.com/ChicoState/GoalUndo GoalUndo repo] into your own GitHub space | |
− | + | # Clone your fork onto your own computer | |
− | + | # Set the upstream remote in case the instructor needs to give you changes to the code during the exam | |
− | + | # Working within a new branch, add unit tests that thoroughly test the functionality as described in the documentation | |
− | + | # Use your judgment -- based on what you learned about testing thoroughly -- to decide when you have written sufficient tests to be confident that '''any correct implementation will pass your tests''' and that '''any incorrect implementation will fail.''' | |
− | + | # Once you are done testing, push your changes into your fork (keeping it in your branch) | |
− | + | # Submit the url and branch name of the branch on your fork with your tests | |
− | + | # Make sure you have only pushed changes to the <code>GoalUndoTest.cpp</code> file. ''No other files'' should be changed on your GitHub fork. Any commits to your fork after the deadline will be considered late. | |
− | ==== Instructors | + | ==== Instructors ==== |
Make your own local clone of the GoalUndo repository and change the code so that it will work as documented in some cases but not in others (such as changing conditional operators or types of control structures). To grade each student, fetch the student's fork and then merge with the changes you made to inject intentional errors into the code. Run the student's tests and confirm that tests fail where they should be testing the functionality broken by the errors you introduced. | Make your own local clone of the GoalUndo repository and change the code so that it will work as documented in some cases but not in others (such as changing conditional operators or types of control structures). To grade each student, fetch the student's fork and then merge with the changes you made to inject intentional errors into the code. Run the student's tests and confirm that tests fail where they should be testing the functionality broken by the errors you introduced. | ||
− | === Deliverables | + | === Deliverables === |
A fork of the GoalUndo repository, with added tests | A fork of the GoalUndo repository, with added tests | ||
− | === Assessment | + | === Assessment === |
Grading Rubric | Grading Rubric | ||
Line 63: | Line 65: | ||
| Instructions were followed accurately and precisely | | Instructions were followed accurately and precisely | ||
+ | |- | ||
| '''Version Control (20%)''' | | '''Version Control (20%)''' | ||
| Several mistakes shown in demonstrating ability to fork, commit progress, and pushing to remote (forked) repository | | Several mistakes shown in demonstrating ability to fork, commit progress, and pushing to remote (forked) repository | ||
Line 68: | Line 71: | ||
| Demonstrated ability to fork, commit progress, and pushing to remote (forked) repository | | Demonstrated ability to fork, commit progress, and pushing to remote (forked) repository | ||
+ | |- | ||
| '''Unit Tests (20%)''' | | '''Unit Tests (20%)''' | ||
| Tests not adequately set up nor separated into individual test functions that each check one specific case | | Tests not adequately set up nor separated into individual test functions that each check one specific case | ||
Line 73: | Line 77: | ||
| Unit tests are organized in a collection of test functions which each test specific cases and each test has appropriate input, output, and assertions | | Unit tests are organized in a collection of test functions which each test specific cases and each test has appropriate input, output, and assertions | ||
+ | |- | ||
| '''Test Thoroughness (30%)''' | | '''Test Thoroughness (30%)''' | ||
| Multiple lines of code and/or branches are not exercised by the tests | | Multiple lines of code and/or branches are not exercised by the tests | ||
Line 78: | Line 83: | ||
| The tests cover all possible branches as reported by gcov's "branch coverage" | | The tests cover all possible branches as reported by gcov's "branch coverage" | ||
+ | |- | ||
| '''Regression Test Effectiveness (20%)''' | | '''Regression Test Effectiveness (20%)''' | ||
| Changing the code with new (or fixed) bugs do not change the result of the tests | | Changing the code with new (or fixed) bugs do not change the result of the tests | ||
Line 85: | Line 91: | ||
|} | |} | ||
− | === Additional Information | + | === Additional Information === |
− | {| | + | |
− | + | {{Learning Activity Info | |
− | + | |acm unit= | |
Software Engineering / SE Software Verification Validation | Software Engineering / SE Software Verification Validation | ||
− | | | + | |acm topic= |
− | + | ||
Unit Testing, Test Coverage | Unit Testing, Test Coverage | ||
− | | | + | |difficulty= |
− | + | ||
Writing thorough unit tests will take intermediate knowledge of object oriented programming and predicting possible future bugs will take advanced reflective cognition | Writing thorough unit tests will take intermediate knowledge of object oriented programming and predicting possible future bugs will take advanced reflective cognition | ||
− | | | + | |time= |
− | + | ||
The assignment should take from 1-3 hours of work and is recommended as an equivalent to a relatively small programming assignment. | The assignment should take from 1-3 hours of work and is recommended as an equivalent to a relatively small programming assignment. | ||
− | | | + | |environment= |
− | + | Need to have a working C++ development environment with [[:Category:Google Test|Google Test]] and gcov installed | |
− | Need to have a working C++ development environment with | + | |author= |
− | | | + | |
− | + | ||
Kevin Buffardi | Kevin Buffardi | ||
− | | | + | |source= |
− | + | ||
Kevin Buffardi | Kevin Buffardi | ||
− | | | + | |license= |
− | + | {{License CC BY SA}} | |
− | + | }} | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | [[Category: | + | [[Category:Learning Activity]] |
− | [[Category: | + | [[Category:Quality and Testing]] |
+ | [[Category:Google Test]] | ||
+ | [[Category:Good Draft]] |
Latest revision as of 13:37, 8 September 2018
Title |
Regression Test Assignment |
---|---|
Overview |
Participants write unit tests (in Google Test) to establish reliable regression tests for a C++ class |
Prerequisites |
Students should:
|
Learning Objectives |
After successfully completing this activity, the learner should be able to:
|
Process Skills Practiced |
Directions
Students
Overview
Your job is to test the GoalUndo class thoroughly so that developers can verify that it is working correctly and have regression tests for when the code is changed during maintenance. That means that your job is not only to verify that the current solution code is working, but that any implementation of the existing functions work as described in the documentation.
Instructions
- Fork the GoalUndo repo into your own GitHub space
- Clone your fork onto your own computer
- Set the upstream remote in case the instructor needs to give you changes to the code during the exam
- Working within a new branch, add unit tests that thoroughly test the functionality as described in the documentation
- Use your judgment -- based on what you learned about testing thoroughly -- to decide when you have written sufficient tests to be confident that any correct implementation will pass your tests and that any incorrect implementation will fail.
- Once you are done testing, push your changes into your fork (keeping it in your branch)
- Submit the url and branch name of the branch on your fork with your tests
- Make sure you have only pushed changes to the
GoalUndoTest.cpp
file. No other files should be changed on your GitHub fork. Any commits to your fork after the deadline will be considered late.
Instructors
Make your own local clone of the GoalUndo repository and change the code so that it will work as documented in some cases but not in others (such as changing conditional operators or types of control structures). To grade each student, fetch the student's fork and then merge with the changes you made to inject intentional errors into the code. Run the student's tests and confirm that tests fail where they should be testing the functionality broken by the errors you introduced.
Deliverables
A fork of the GoalUndo repository, with added tests
Assessment
Grading Rubric
10% did you follow the instructions accurately? 20% did you demonstrate recommended practices with git and GitHub? 20% were unit tests written and formatted following recommended practices? 30% how thoroughly did you test the existing code? 20% do your tests verify that each function acts as documented as regression tests?
Criteria | Level 1 (poor) | Level 2 (fair) | Level 3 (excellent) |
---|---|---|---|
Instructions (10%) | Instructions to fork the repo, only commit the test file, and submit the url were not followed | Some instructions were not followed precisely, such as committing unnecessary files | Instructions were followed accurately and precisely |
Version Control (20%) | Several mistakes shown in demonstrating ability to fork, commit progress, and pushing to remote (forked) repository | Minor mistakes shown in demonstrating ability to fork, commit progress, and pushing to remote (forked) repository, such as only committing once or forgetting to push local changes to the remote | Demonstrated ability to fork, commit progress, and pushing to remote (forked) repository |
Unit Tests (20%) | Tests not adequately set up nor separated into individual test functions that each check one specific case | Unit tests generally follow the correct format but do not follow all conventions such as poorly-named functions or a test function really checking multiple cases | Unit tests are organized in a collection of test functions which each test specific cases and each test has appropriate input, output, and assertions |
Test Thoroughness (30%) | Multiple lines of code and/or branches are not exercised by the tests | The tests cover most of the code according to gcov, but missed possible branches | The tests cover all possible branches as reported by gcov's "branch coverage" |
Regression Test Effectiveness (20%) | Changing the code with new (or fixed) bugs do not change the result of the tests | Some corrected bugs result in passed tests and injecting new bugs cause new failed tests but the tests do not correctly report all changes | Corrected bugs result in passed tests and injecting new bugs cause new failed tests with appropriate names that identify the failing feature |
Additional Information
ACM BoK Area & Unit(s) |
Software Engineering / SE Software Verification Validation |
---|---|
ACM BoK Topic(s) |
Unit Testing, Test Coverage |
Difficulty |
Writing thorough unit tests will take intermediate knowledge of object oriented programming and predicting possible future bugs will take advanced reflective cognition |
Estimated Time to Complete |
The assignment should take from 1-3 hours of work and is recommended as an equivalent to a relatively small programming assignment. |
Environment / Materials |
Need to have a working C++ development environment with Google Test and gcov installed |
Author(s) |
Kevin Buffardi |
Source |
Kevin Buffardi |
License |
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License |