/tdd-presentation

Assets for KT (Knowledge Transfer) presentation about TDD

Primary LanguageC#

Project for exemplifying TDD.

This project was created to store the assets for KT (Knlowledge Transfer) about TDD.

I divided the project as follows:

  • Documentation - PDF created specifically for presentation.
  • Notion Documentation - Documentation created specifically for the presentation and originating the PDF.
  • C# Code - Small example project in .Net Core with xUnit.
  • Javascript Code - Small example project in JavaScript with Jest.

Setup

For .Net Example

Open in VS 2019 and run tests.

For JavaScript Example

If yarn not installed:

npm install --global yarn

If yarn already installed:

yarn install
//or
yarn add jest

To run test:

yarn test

Credits

The examples were based on the following project: DotNet5 xUnit.