-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from neu-se/m12-largetesting
M12 largetesting
- Loading branch information
Showing
8 changed files
with
33 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,4 @@ vendor/ | |
.DS_Store | ||
Gemfile.lock | ||
|
||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -300,4 +300,4 @@ DEPENDENCIES | |
webrick (~> 1.7) | ||
|
||
BUNDLED WITH | ||
2.2.21 | ||
2.2.21 |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
layout: module | ||
title: "12 - Tests With Larger Scope" | ||
permalink: /modules/12-larger-tests | ||
parent: Modules | ||
nav_order: 12 | ||
lessons: | ||
- title: "Testing Larger Things" | ||
ppt: "Module 12 Testing Larger Things.pptx" | ||
pdf: "Module 12 Testing Larger Things.pdf" | ||
--- | ||
### Learning Objectives: | ||
In this module, you will learn to: | ||
* Design test cases for code using fakes, mocks and spies | ||
* Explain why you might need a test double in your testing | ||
* Explain why you might need tests that are larger than unit tests | ||
* Explain how large, deployed systems lead to additional testing challenges | ||
|
||
|
||
|
||
{% include lesson.html %} | ||
|
||
|
||
### Resources | ||
* [Software Engineering at Google: “Larger Testing”](https://learning.oreilly.com/library/view/software-engineering-at/9781492082781/ch14.html) | ||
* [Code example from lecture]({{ site.baseurl }}{% link Examples/module-12-testing-examples.zip %}) | ||
* [jest-mock-extended](https://www.npmjs.com/package/jest-mock-extended) | ||
* [Aye Spy, visual regression testing](https://github.com/newsuk/AyeSpy?tab=readme-ov-file) | ||
* [End to End Testing with Cypress](https://docs.cypress.io/guides/end-to-end-testing/writing-your-first-end-to-end-test) |