Add pkg field to testing.Internal_Test

This commit is contained in:
gingerBill
2021-03-14 18:15:08 +00:00
parent 2aa588209e
commit 468ad4837b
4 changed files with 40 additions and 8 deletions
+3
View File
@@ -3,9 +3,12 @@ package testing
import "core:fmt"
import "core:io"
// IMPORTANT NOTE: Compiler requires this layout
Test_Signature :: proc(^T);
// IMPORTANT NOTE: Compiler requires this layout
Internal_Test :: struct {
pkg: string,
name: string,
p: Test_Signature,
}