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

0% Statements 0/1
100% Branches 0/0
50% Functions 1/2
0% Lines 0/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 25 26 27 28 29                                                         
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
 
import "../../contracts/mocks/nf-token-metadata-enumerable-mock.sol";
 
contract NFTokenMetadataEnumerableTestMock is
  NFTokenMetadataEnumerableMock
{
 
  constructor(
    string memory _name,
    string memory _symbol
  )
    NFTokenMetadataEnumerableMock(_name, _symbol)
  {
  }
 
  function checkUri(
    uint256 _tokenId
  )
    external
    view
    returns (string memory)
  {
    return idToUri[_tokenId];
  }
 
}