From b4da54914981fe2296f5300bb3e9edae6de102b0 Mon Sep 17 00:00:00 2001 From: Mccc <> Date: Mon, 25 Nov 2024 11:30:13 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=B5=8B=E8=AF=95=E7=94=A8?= =?UTF-8?q?=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Tests/Example.swift | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Tests/Example.swift diff --git a/Tests/Example.swift b/Tests/Example.swift new file mode 100644 index 0000000..bbf1164 --- /dev/null +++ b/Tests/Example.swift @@ -0,0 +1,34 @@ +import XCTest +import SmartCodable + + + + +class Tests: XCTestCase { + + override func setUp() { + super.setUp() + + } + + override func tearDown() { + super.tearDown() + } + + + func testBase() { + } + +} + + + + + + +// SmartCodable +struct Smart: SmartCodable { + var name: String? + + +