Skip to content

Commit

Permalink
change swift testing to xctest.
Browse files Browse the repository at this point in the history
Signed-off-by: furby™ <[email protected]>
  • Loading branch information
furby-tm committed Oct 28, 2024
1 parent 6f91918 commit a46f4d6
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions Tests/ImGuiTests/ImGuiTests.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
import Testing
// SPDX-License-Identifier: Zlib
// Copyright Contributors to the Zlib project

@testable import ImGui
import XCTest

@Test func example() async throws {
// Write your test here and use APIs like `#expect(...)` to check expected conditions.
class ImGuiTests: XCTestCase
{
func testImGui() throws
{
print("test me.")
}
}

0 comments on commit a46f4d6

Please sign in to comment.