class RubyLsp::TestUnitReporter

def test_started(test)

: (::Test::Unit::TestCase test) -> void
def test_started(test)
  super
  uri, line = LspReporter.instance.uri_and_line_for(test.method(test.method_name))
  return unless uri
  @current_uri = uri
  @current_test_id = "#{test.class.name}##{test.method_name}"
  LspReporter.instance.start_test(id: @current_test_id, uri: @current_uri, line: line)
end