Skip to content

Commit

Permalink
test: DaveConsensus (wip)
Browse files Browse the repository at this point in the history
  • Loading branch information
guidanoli committed Sep 7, 2024
1 parent 9845ddc commit a516cf5
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions cartesi-rollups/contracts/test/DaveConsensus.t.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// Copyright 2023 Cartesi Pte. Ltd.

pragma solidity ^0.8.0;

import {Test} from "forge-std/Test.sol";

import {MultiLevelTournamentFactory} from "prt-contracts/tournament/factories/MultiLevelTournamentFactory.sol";
import {TopTournamentFactory} from "prt-contracts/tournament/factories/multilevel/TopTournamentFactory.sol";
import {MiddleTournamentFactory} from "prt-contracts/tournament/factories/multilevel/MiddleTournamentFactory.sol";
import {BottomTournamentFactory} from "prt-contracts/tournament/factories/multilevel/BottomTournamentFactory.sol";

contract DaveConsensusTest is Test {
function testDummy() external {
new MultiLevelTournamentFactory(
new TopTournamentFactory(), new MiddleTournamentFactory(), new BottomTournamentFactory()
);
}
}

0 comments on commit a516cf5

Please sign in to comment.