forked from jkcoxson/minimuxer
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a test and dummy c file for making .o
Signed-off-by: Joe Mattiello <[email protected]>
- Loading branch information
Showing
2 changed files
with
23 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// | ||
// minimuxer.c | ||
// minimuxer | ||
// | ||
// Created by Joseph Mattiello on 9/16/24. | ||
// | ||
|
||
#include "minimuxer.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,19 @@ | ||
// | ||
// Test.swift | ||
// minimuxer | ||
// | ||
// Created by Joseph Mattiello on 9/16/24. | ||
// | ||
|
||
import Testing | ||
@testable import minimuxer | ||
@testable import libminimuxer | ||
|
||
struct Test { | ||
|
||
@Test func test_minimuxer() async throws { | ||
|
||
@Test func example() async throws { | ||
// Write your test here and use APIs like `#expect(...)` to check expected conditions. | ||
let ready = minimuxer.ready() | ||
#expect(ready) | ||
} | ||
} |