aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server/tests
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_lsp_server/tests')
-rw-r--r--crates/ra_lsp_server/tests/heavy_tests/main.rs12
-rw-r--r--crates/ra_lsp_server/tests/heavy_tests/support.rs9
2 files changed, 8 insertions, 13 deletions
diff --git a/crates/ra_lsp_server/tests/heavy_tests/main.rs b/crates/ra_lsp_server/tests/heavy_tests/main.rs
index 40d825893..d271b02fc 100644
--- a/crates/ra_lsp_server/tests/heavy_tests/main.rs
+++ b/crates/ra_lsp_server/tests/heavy_tests/main.rs
@@ -1,16 +1,14 @@
1mod support; 1mod support;
2 2
3use std::{ 3use std::{collections::HashMap, time::Instant};
4 collections::HashMap,
5 time::Instant,
6};
7 4
8use lsp_types::{ 5use lsp_types::{
9 CodeActionContext, DocumentFormattingParams, FormattingOptions, Position, Range, DidOpenTextDocumentParams, TextDocumentItem, TextDocumentPositionParams 6 CodeActionContext, DidOpenTextDocumentParams, DocumentFormattingParams, FormattingOptions,
7 Position, Range, TextDocumentItem, TextDocumentPositionParams,
10}; 8};
11use ra_lsp_server::req::{ 9use ra_lsp_server::req::{
12 CodeActionParams, CodeActionRequest, Formatting, Runnables, RunnablesParams, CompletionParams, Completion, 10 CodeActionParams, CodeActionRequest, Completion, CompletionParams, DidOpenTextDocument,
13 DidOpenTextDocument, OnEnter, 11 Formatting, OnEnter, Runnables, RunnablesParams,
14}; 12};
15use serde_json::json; 13use serde_json::json;
16use tempfile::TempDir; 14use tempfile::TempDir;
diff --git a/crates/ra_lsp_server/tests/heavy_tests/support.rs b/crates/ra_lsp_server/tests/heavy_tests/support.rs
index 75912afdd..a5e352da1 100644
--- a/crates/ra_lsp_server/tests/heavy_tests/support.rs
+++ b/crates/ra_lsp_server/tests/heavy_tests/support.rs
@@ -11,20 +11,17 @@ use flexi_logger::Logger;
11use gen_lsp_server::{RawMessage, RawNotification, RawRequest}; 11use gen_lsp_server::{RawMessage, RawNotification, RawRequest};
12use lsp_types::{ 12use lsp_types::{
13 notification::DidOpenTextDocument, 13 notification::DidOpenTextDocument,
14 notification::{Notification, ShowMessage},
14 request::{Request, Shutdown}, 15 request::{Request, Shutdown},
15 DidOpenTextDocumentParams, TextDocumentIdentifier, TextDocumentItem, Url, 16 DidOpenTextDocumentParams, TextDocumentIdentifier, TextDocumentItem, Url,
16 notification::{Notification, ShowMessage},
17}; 17};
18use serde::Serialize; 18use serde::Serialize;
19use serde_json::{to_string_pretty, Value}; 19use serde_json::{to_string_pretty, Value};
20use tempfile::TempDir; 20use tempfile::TempDir;
21use test_utils::{find_mismatch, parse_fixture};
21use thread_worker::Worker; 22use thread_worker::Worker;
22use test_utils::{parse_fixture, find_mismatch};
23 23
24use ra_lsp_server::{ 24use ra_lsp_server::{main_loop, req, InitializationOptions};
25 main_loop, req,
26 InitializationOptions,
27};
28 25
29pub struct Project<'a> { 26pub struct Project<'a> {
30 fixture: &'a str, 27 fixture: &'a str,