all files / tests/mocks/ nf-token-test-mock.sol

100% Statements 1/1
100% Branches 0/0
100% Functions 1/1
100% Lines 1/1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24                                             
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
 
import "../../contracts/mocks/nf-token-mock.sol";
 
contract NFTokenTestMock is
  NFTokenMock
{
 
 /**
   * @dev Removes a NFT from owner.
   * @param _tokenId Which NFT we want to remove.
   */
  function burn(
    uint256 _tokenId
  )
    external
    onlyOwner
  {
    super._burn(_tokenId);
  }
 
}