5 关于truffle测试

.png

如图,我执行truffle创建初始文件,没有在文件里发现truffle这个包然后查了truffle全局包里面也没有这个 .png 我想问下现在的测试整合到别的地方了么?是在哪里呢?

请先 登录 后评论

最佳答案 2021-10-30 16:02

Assert.sol 在 Truffle 的 安装包下找到,类似这样的目录:

usr/local/lib/node_modules/truffle/build/Assert.sol

DeployedAddresses文件是在运行测试的时候动态生成的,它会根据部署的合约生成类似的合约:

contract DeployedAddresses {
  function MetaCoin() returns (address) {
    return 0x...; // address is hardcoded
  }
  // If there are more contracts deployed, they'll be included as well.
}
请先 登录 后评论

其它 0 个回答

  • 2 关注
  • 0 收藏,1440 浏览
  • 提出于 2021-10-30 11:10

相似问题