ERC165.test.js 276 B

1234567891011
  1. const { shouldSupportInterfaces } = require('./SupportsInterface.behavior');
  2. const ERC165 = artifacts.require('$ERC165');
  3. contract('ERC165', function () {
  4. beforeEach(async function () {
  5. this.mock = await ERC165.new();
  6. });
  7. shouldSupportInterfaces(['ERC165']);
  8. });