PythUpgradable.t.sol 583 B

1234567891011121314151617181920
  1. // SPDX-License-Identifier: Apache 2
  2. pragma solidity ^0.8.0;
  3. import "../contracts/pyth/PythUpgradable.sol";
  4. import "forge-std/Test.sol";
  5. contract TestPythUpgradable is Test {
  6. PythUpgradable public pyth;
  7. function setUp() public {
  8. pyth = new PythUpgradable();
  9. // The values below are just dummy values and this test does nothing.
  10. pyth.initialize(
  11. address(0x0000000000000000000000000000000000000000000000000000000000000000),
  12. 0,
  13. 0x0000000000000000000000000000000000000000000000000000000000000000
  14. );
  15. }
  16. }