ERC165.test.js 285 B

12345678910111213
  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([
  8. 'ERC165',
  9. ]);
  10. });