Add foundry tests init (name, symbol, placeholder functions)

This commit is contained in:
EmperorOrokuSaki 2022-12-05 22:57:39 +03:30
parent f10ef82985
commit 700293b94b
1 changed files with 58 additions and 0 deletions

58
test/foundry/apps.t.sol Normal file
View File

@ -0,0 +1,58 @@
pragma solidity ^0.8.7;
import "forge-std/Test.sol";
import "../../contracts/FleekERC721.sol";
contract ContractBTest is Test {
FleekERC721 fleekContract;
uint256 testNumber;
function setUp() public {
fleekContract = new FleekERC721('Test Contract', 'FLKAPS');
}
function testName() public {
assertEq(fleekContract.name(), 'Test Contract'));
}
function testSymbol() public {
assertEq(fleekContract.symbol(), 'FLKAPS'));
}
function testMint() public {
}
function testTokenURI() public {
}
function testBurn() public {
}
function testSetTokenName() public {
}
function testSetTokenDescription() public {
}
function testSetTokenImage() public {
}
function testSetTokenExternalURL() public {
}
function testSetTokenBuild() public {
}
function testUpgradeTokenBuild() public {
}
function testSetTokenENS() public {
}
function testAddTokenController() public {
}
function testRemoveTokenController() public {
}
}