diff --git a/lesson-plans/function-design.md b/lesson-plans/function-design.md index 09e7f19..bbf3f14 100644 --- a/lesson-plans/function-design.md +++ b/lesson-plans/function-design.md @@ -5,8 +5,8 @@ Learn to write unit tests and to design your own solutions to coding challenges. ## Before Class - Read through the steps of Function Design and study the example: - - `./function-design/README.md` - - `./function-design/examples/reverse-a-string` + - [readme: function design](../2-write/1-function-design/README.md) + - [example: repeat-a-string](../2-write/1-function-design/examples/repeat-a-string) ## During Class @@ -14,12 +14,12 @@ Learn to write unit tests and to design your own solutions to coding challenges. Practice writing unit tests for functions. -- **All together**: Introduce the syntax for unit testing, and go through the `testing-functions.test.js` example +- **All together**: Introduce the syntax for unit testing, and go through the example [repeat-a-string](../2-write/1-function-design/examples/repeat-a-string). - **In small groups**: Write some tests! ### After Break -Practice some `./function-design` +Practice some [function design exercises](../2-write/1-function-design/exercises/) - **All Together**: What is function design? What are the steps? Why is this important? - **In small groups**: Write some functions! diff --git a/lesson-plans/solution-write-ups.md b/lesson-plans/solution-write-ups.md index 4918bab..729048c 100644 --- a/lesson-plans/solution-write-ups.md +++ b/lesson-plans/solution-write-ups.md @@ -10,8 +10,7 @@ This week take your first step to becoming an expert problem solver by studying - Read through the README, this will be your main exercise for the week. - Follow the instructions in **Getting Started** to locally set up your repository. - Practice running the `example-quarter-of-the-year/sandbox.test.js` file with Study Lenses in the browser (and in VSCode if you want). (instructions in **Getting Started**) -- Read through [/about-testing/examples](https://github.com/HackYourFutureBelgium/behavior-strategy-implementation/tree/master/about-testing/examples) to be familiar with the syntax for `describe`, `it`, and `expect` -- Create an account on [Edabit](https://edabit.com) and take a look through the [Add up the Numbers from a Single Number](https://edabit.com/challenge/4gzDuDkompAqujpRi) exercise. + - Create an account on [Edabit](https://edabit.com) and take a look through the [Add up the Numbers from a Single Number](https://edabit.com/challenge/4gzDuDkompAqujpRi) exercise. ## During Class