mirror of
https://github.com/logos-messaging/logos-messaging-rlnv2-contract.git
synced 2026-01-03 22:43:12 +00:00
fix: rename merged Echidna tests
This commit is contained in:
parent
416f074d5f
commit
b06eacdcef
@ -1,16 +1,16 @@
|
||||
pragma solidity 0.8.24;
|
||||
|
||||
// Initial test replay generated from Echidna log at https://getrecon.xyz/tools/echidna
|
||||
// Assume EchidnaTest.sol is the Echidna harness contract that defines the methods like registerMembership,
|
||||
// Assume EchidnaTestRaces.sol is the Echidna harness contract that defines the methods registerMembership,
|
||||
// attemptExtensionRace, attemptErasureRace.
|
||||
import "./EchidnaTest.t.sol";
|
||||
import "forge-std/Test.sol"; // Replace with the actual path to EchidnaTest.sol
|
||||
import "./EchidnaTestRaces.t.sol";
|
||||
import "forge-std/Test.sol";
|
||||
|
||||
contract EchidnaReplay is Test {
|
||||
EchidnaTest internal echidna;
|
||||
contract EchidnaReplayRaces is Test {
|
||||
EchidnaTestRaces internal echidna;
|
||||
|
||||
function setUp() public {
|
||||
echidna = new EchidnaTest();
|
||||
echidna = new EchidnaTestRaces();
|
||||
}
|
||||
|
||||
function test_attemptErasureRace_WakuRLN() public {
|
||||
@ -7,7 +7,7 @@ import "./TestStableToken.sol";
|
||||
import { ERC1967Proxy } from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol";
|
||||
|
||||
// Echidna invariants and assertions for WakuRlnV2 multi-user timestamp manipulation races
|
||||
contract EchidnaTest {
|
||||
contract EchidnaTestRaces {
|
||||
WakuRlnV2 internal w;
|
||||
TestStableToken internal token;
|
||||
address internal tokenOwner = address(this);
|
||||
Loading…
x
Reference in New Issue
Block a user