From 00099a0547fff5cf319bed5218eab81e0c797f87 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 7 May 2026 23:34:38 +0000 Subject: [PATCH] test: add sanity test suite --- test/Sanity.t.sol | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 test/Sanity.t.sol diff --git a/test/Sanity.t.sol b/test/Sanity.t.sol new file mode 100644 index 0000000..e14b369 --- /dev/null +++ b/test/Sanity.t.sol @@ -0,0 +1,15 @@ +// SPDX-License-Identifier: MIT +pragma solidity ^0.8.24; + +import {Test} from "forge-std/Test.sol"; + +/// @dev Simple sanity test — verifies the test harness is functional. +contract SanityTest is Test { + function test_true_is_true() public pure { + assertTrue(true); + } + + function test_one_plus_one() public pure { + assertEq(1 + 1, 2); + } +}