From 4c73f60e8b11585bed7c754c5a0cb7b59e6c2958 Mon Sep 17 00:00:00 2001 From: Daniel Gavin Date: Sun, 25 Apr 2021 17:06:03 +0200 Subject: started work on adding tests --- src/testing/testing.odin | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/testing/testing.odin (limited to 'src/testing') diff --git a/src/testing/testing.odin b/src/testing/testing.odin new file mode 100644 index 0000000..7b47f90 --- /dev/null +++ b/src/testing/testing.odin @@ -0,0 +1,25 @@ +package ols_testing + +import "core:testing" + +Package_Source :: struct { + pkg_name: string, + source: string, +} + +Source :: struct { + main: string, + source_packages: Package_Source, +} + +expect_signature :: proc(t: ^testing.T, src: Source, expect_arg: []string) { + +} + +expect_completion :: proc(t: ^testing.T, src: Source, completions: []string) { + +} + +expect_hover :: proc(t: ^testing.T, src: Source, hover_info: string) { + +} \ No newline at end of file -- cgit v1.2.3