FoundryTesting/test/Console.t.sol

13 lines
224 B
Solidity
Raw Normal View History

2023-08-25 00:37:12 +00:00
pragma solidity ^0.8.20;
import "forge-std/Test.sol";
contract ConsoleTest is Test {
function testLogSomething() public {
console.log("Log something here", 567);
int x = -1;
console.logInt(x);
}
}