chrisckwong821 / simple-bank-exercise-chrisckwong821

simple-bank-exercise-chrisckwong821 created by GitHub Classroom

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Open in Visual Studio Code

Simple Bank Exercise

SimpleBank is a Truffle project that contains a starter contract, migration and Truffle JavaScript test files. In this exercise you are going to implement the SimpleBank.sol contract.

Files

  • contracts/SimpleBank.sol : the partial implementation of a Solidity Contract you will complete.
  • test/simpleBank.test.js : the Truffle test file that describes the behavior of a correct SimpleBank contract.

Requirements

  1. Latest truffle version.
    npm -g uninstall truffle && npm -g install truffle
  2. Your preferred code editor.
  3. Familiarity with terminals.

Instructions

Follow the comments outlined in SimpleBank.sol to implement its functionality. The test are there to determine correct contract behavior as well as guide you through the implementation.

The general workflow is to use Test Drive Development's red green process:

  1. Enable a test in simpleBank.test.js. This means changing it.skip, to it in the test declaration.
  2. Run truffle test from a terminal.
  3. Use the failed test output along with the hints in contracts/SimpleBank.sol to make the test pass.
Video: Run a test example

asciicast

Note on testing

Check out the testing files to see how tests are implemented in JavaScript. We will go over the details of implementing tests later in the curriculum. Of course, if you have questions, do reach out in Discord, or schedule an Office Hour session with one of our mentors.

About

simple-bank-exercise-chrisckwong821 created by GitHub Classroom


Languages

Language:JavaScript 58.8%Language:Solidity 41.2%