123456789101112 |
- require('openzeppelin-test-helpers');
- const { shouldBehaveLikeEscrow } = require('./Escrow.behavior');
- const Escrow = artifacts.require('Escrow');
- contract('Escrow', function ([_, primary, ...otherAccounts]) {
- beforeEach(async function () {
- this.escrow = await Escrow.new({ from: primary });
- });
- shouldBehaveLikeEscrow(primary, otherAccounts);
- });
|