From 6a684aff40a60ac36c17d0b6036d35155238fe88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=AB=8B=E5=85=9A=20Lidang?= Date: Thu, 1 Jun 2023 03:29:47 -0500 Subject: [PATCH] add --- .../test-contracts/test-voting/VotingTest.sol | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 darc-protocol/contracts/test-contracts/test-voting/VotingTest.sol diff --git a/darc-protocol/contracts/test-contracts/test-voting/VotingTest.sol b/darc-protocol/contracts/test-contracts/test-voting/VotingTest.sol new file mode 100644 index 0000000..d3603bf --- /dev/null +++ b/darc-protocol/contracts/test-contracts/test-voting/VotingTest.sol @@ -0,0 +1,14 @@ +// SPDX-License-Identifier: BUSL-1.1 +pragma solidity ^0.8.9; +import "../../Runtime/VotingMachine/VotingMachine.sol"; + + +/** + * @title The unit test contract of the voting machine + * @author DARC Team + * @notice null + */ + +contract VotingTestContract is VotingMachine{ + +} \ No newline at end of file