Files
openzeppelin-contracts/test/utils/introspection/ERC165.test.js
2022-12-29 17:08:12 -03:00

14 lines
296 B
JavaScript

const { shouldSupportInterfaces } = require('./SupportsInterface.behavior');
const ERC165Mock = artifacts.require('ERC165Mock');
contract('ERC165', function () {
beforeEach(async function () {
this.mock = await ERC165Mock.new();
});
shouldSupportInterfaces([
'ERC165',
]);
});