Skip to content

yangche3/recitation-2-f23

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

17 623 Quality Assurance: Recitation 2 Fall 2023

Installation

GitHub Codespaces

In the current repository, go to <> Code > Codespaces > Create codespace on main. Wait until the container finishes building.

Local Setup

Clone the current repository:

git clone git@github.com:MSE-QualityAssurance/recitation-2-f23.git

Run the following command for each of the projects:

cd TestingWithStubs/easymock && mvn clean compile package

cd TestingWithStubs/mockito && mvn clean compile package

Content

.
├── README.md
├── TestingWithStubs/
    ├── easymock/
        └── src/
            ├── main/
                ├── .../App.java
                ├── .../Currency.java
                └── .../ExchangeRate.java
            └── test/
                ├── .../AppTest.java
                └── .../ExchangeRateTest.java
        ├── target/
        ├── easymock.iml
        └── pom.xml
    └── mockito/  
        └── src/
            ├── main/
                ├── .../App.java
                ├── .../Currency.java
                └── .../ExchangeRate.java
            └── test/
                ├── .../AppTest.java
                └── .../ExchangeRateTest.java
        ├── target/
        ├── easymock.iml
        └── pom.xml
└── resources/       Presentation from the Recitation

Exercises

  1. Implement toDollars method in Currency

  2. Use your favorite mocking framework

About

17623 - Quality Assurance: Recitation 2 Fall 2023

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%