This file contains hidden or 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
pragma solidity ^0.4.18; | |
// import './SomeContract.sol'; | |
contract HelloYou { | |
event Hello(address you); | |
function sayHello() public { | |
address _person = msg.sender; | |
This file contains hidden or 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
// For each unit test you write, | |
// answer these questions: | |
describe('What component aspect are you testing?', () => { | |
it('What should the feature do?', () => { | |
const actual = 'What is the actual output?' | |
const expected = 'What is the expected output?' | |
expect(actual).toEqual(expected) |