Skip to content

Commit

Permalink
Add a test and dummy c file for making .o
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Mattiello <[email protected]>
  • Loading branch information
JoeMatt committed Sep 16, 2024
1 parent 7ff4de9 commit 01c3ed1
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
8 changes: 8 additions & 0 deletions Sources/libminimuxer/minimuxer.c
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"
17 changes: 15 additions & 2 deletions Tests/minimuxerTests/minimuxerTests.swift
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)
}
}

0 comments on commit 01c3ed1

Please sign in to comment.