Current section
Files
Jump to
Current section
Files
src/startest@internal@runner.erl
-module(startest@internal@runner).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]).
-define(FILEPATH, "src/startest/internal/runner.gleam").
-export([run_tests/1]).
-if(?OTP_RELEASE >= 27).
-define(MODULEDOC(Str), -moduledoc(Str)).
-define(DOC(Str), -doc(Str)).
-else.
-define(MODULEDOC(Str), -compile([])).
-define(DOC(Str), -compile([])).
-endif.
?MODULEDOC(false).
-file("src/startest/internal/runner.gleam", 10).
?DOC(false).
-spec run_tests(startest@context:context()) -> nil.
run_tests(Ctx) ->
startest@internal@runner@backend@erlang:run_tests(Ctx).