diff options
Diffstat (limited to 'crates/ide/src/diagnostics')
-rw-r--r-- | crates/ide/src/diagnostics/field_shorthand.rs | 10 | ||||
-rw-r--r-- | crates/ide/src/diagnostics/fixes/change_case.rs | 4 | ||||
-rw-r--r-- | crates/ide/src/diagnostics/fixes/wrap_tail_expr.rs | 6 | ||||
-rw-r--r-- | crates/ide/src/diagnostics/macro_error.rs | 6 | ||||
-rw-r--r-- | crates/ide/src/diagnostics/missing_fields.rs | 6 |
5 files changed, 15 insertions, 17 deletions
diff --git a/crates/ide/src/diagnostics/field_shorthand.rs b/crates/ide/src/diagnostics/field_shorthand.rs index 01bd2dba6..e885a398e 100644 --- a/crates/ide/src/diagnostics/field_shorthand.rs +++ b/crates/ide/src/diagnostics/field_shorthand.rs | |||
@@ -98,17 +98,17 @@ fn check_pat_field_shorthand( | |||
98 | 98 | ||
99 | #[cfg(test)] | 99 | #[cfg(test)] |
100 | mod tests { | 100 | mod tests { |
101 | use crate::diagnostics::tests::{check_fix, check_no_diagnostics}; | 101 | use crate::diagnostics::tests::{check_diagnostics, check_fix}; |
102 | 102 | ||
103 | #[test] | 103 | #[test] |
104 | fn test_check_expr_field_shorthand() { | 104 | fn test_check_expr_field_shorthand() { |
105 | check_no_diagnostics( | 105 | check_diagnostics( |
106 | r#" | 106 | r#" |
107 | struct A { a: &'static str } | 107 | struct A { a: &'static str } |
108 | fn main() { A { a: "hello" } } | 108 | fn main() { A { a: "hello" } } |
109 | "#, | 109 | "#, |
110 | ); | 110 | ); |
111 | check_no_diagnostics( | 111 | check_diagnostics( |
112 | r#" | 112 | r#" |
113 | struct A(usize); | 113 | struct A(usize); |
114 | fn main() { A { 0: 0 } } | 114 | fn main() { A { 0: 0 } } |
@@ -154,13 +154,13 @@ fn main() { | |||
154 | 154 | ||
155 | #[test] | 155 | #[test] |
156 | fn test_check_pat_field_shorthand() { | 156 | fn test_check_pat_field_shorthand() { |
157 | check_no_diagnostics( | 157 | check_diagnostics( |
158 | r#" | 158 | r#" |
159 | struct A { a: &'static str } | 159 | struct A { a: &'static str } |
160 | fn f(a: A) { let A { a: hello } = a; } | 160 | fn f(a: A) { let A { a: hello } = a; } |
161 | "#, | 161 | "#, |
162 | ); | 162 | ); |
163 | check_no_diagnostics( | 163 | check_diagnostics( |
164 | r#" | 164 | r#" |
165 | struct A(usize); | 165 | struct A(usize); |
166 | fn f(a: A) { let A { 0: 0 } = a; } | 166 | fn f(a: A) { let A { 0: 0 } = a; } |
diff --git a/crates/ide/src/diagnostics/fixes/change_case.rs b/crates/ide/src/diagnostics/fixes/change_case.rs index 42be3375f..db1a37cd6 100644 --- a/crates/ide/src/diagnostics/fixes/change_case.rs +++ b/crates/ide/src/diagnostics/fixes/change_case.rs | |||
@@ -35,7 +35,7 @@ impl DiagnosticWithFixes for IncorrectCase { | |||
35 | #[cfg(test)] | 35 | #[cfg(test)] |
36 | mod change_case { | 36 | mod change_case { |
37 | use crate::{ | 37 | use crate::{ |
38 | diagnostics::tests::{check_fix, check_no_diagnostics}, | 38 | diagnostics::tests::{check_diagnostics, check_fix}, |
39 | fixture, AssistResolveStrategy, DiagnosticsConfig, | 39 | fixture, AssistResolveStrategy, DiagnosticsConfig, |
40 | }; | 40 | }; |
41 | 41 | ||
@@ -102,7 +102,7 @@ fn some_fn() { | |||
102 | 102 | ||
103 | #[test] | 103 | #[test] |
104 | fn test_uppercase_const_no_diagnostics() { | 104 | fn test_uppercase_const_no_diagnostics() { |
105 | check_no_diagnostics( | 105 | check_diagnostics( |
106 | r#" | 106 | r#" |
107 | fn foo() { | 107 | fn foo() { |
108 | const ANOTHER_ITEM$0: &str = "some_item"; | 108 | const ANOTHER_ITEM$0: &str = "some_item"; |
diff --git a/crates/ide/src/diagnostics/fixes/wrap_tail_expr.rs b/crates/ide/src/diagnostics/fixes/wrap_tail_expr.rs index 715a403b9..dcb21e037 100644 --- a/crates/ide/src/diagnostics/fixes/wrap_tail_expr.rs +++ b/crates/ide/src/diagnostics/fixes/wrap_tail_expr.rs | |||
@@ -25,7 +25,7 @@ impl DiagnosticWithFixes for MissingOkOrSomeInTailExpr { | |||
25 | 25 | ||
26 | #[cfg(test)] | 26 | #[cfg(test)] |
27 | mod tests { | 27 | mod tests { |
28 | use crate::diagnostics::tests::{check_fix, check_no_diagnostics}; | 28 | use crate::diagnostics::tests::{check_diagnostics, check_fix}; |
29 | 29 | ||
30 | #[test] | 30 | #[test] |
31 | fn test_wrap_return_type_option() { | 31 | fn test_wrap_return_type_option() { |
@@ -169,7 +169,7 @@ fn div(x: i32, y: i32) -> MyResult<i32> { | |||
169 | 169 | ||
170 | #[test] | 170 | #[test] |
171 | fn test_wrap_return_type_not_applicable_when_expr_type_does_not_match_ok_type() { | 171 | fn test_wrap_return_type_not_applicable_when_expr_type_does_not_match_ok_type() { |
172 | check_no_diagnostics( | 172 | check_diagnostics( |
173 | r#" | 173 | r#" |
174 | //- /main.rs crate:main deps:core | 174 | //- /main.rs crate:main deps:core |
175 | use core::result::Result::{self, Ok, Err}; | 175 | use core::result::Result::{self, Ok, Err}; |
@@ -189,7 +189,7 @@ pub mod option { | |||
189 | 189 | ||
190 | #[test] | 190 | #[test] |
191 | fn test_wrap_return_type_not_applicable_when_return_type_is_not_result_or_option() { | 191 | fn test_wrap_return_type_not_applicable_when_return_type_is_not_result_or_option() { |
192 | check_no_diagnostics( | 192 | check_diagnostics( |
193 | r#" | 193 | r#" |
194 | //- /main.rs crate:main deps:core | 194 | //- /main.rs crate:main deps:core |
195 | use core::result::Result::{self, Ok, Err}; | 195 | use core::result::Result::{self, Ok, Err}; |
diff --git a/crates/ide/src/diagnostics/macro_error.rs b/crates/ide/src/diagnostics/macro_error.rs index d76a3a094..5f97f190d 100644 --- a/crates/ide/src/diagnostics/macro_error.rs +++ b/crates/ide/src/diagnostics/macro_error.rs | |||
@@ -15,9 +15,7 @@ pub(super) fn macro_error(ctx: &DiagnosticsContext<'_>, d: &hir::MacroError) -> | |||
15 | #[cfg(test)] | 15 | #[cfg(test)] |
16 | mod tests { | 16 | mod tests { |
17 | use crate::{ | 17 | use crate::{ |
18 | diagnostics::tests::{ | 18 | diagnostics::tests::{check_diagnostics, check_diagnostics_with_config}, |
19 | check_diagnostics, check_diagnostics_with_config, check_no_diagnostics, | ||
20 | }, | ||
21 | DiagnosticsConfig, | 19 | DiagnosticsConfig, |
22 | }; | 20 | }; |
23 | 21 | ||
@@ -77,7 +75,7 @@ macro_rules! concat { () => {} } | |||
77 | fn register_attr_and_tool() { | 75 | fn register_attr_and_tool() { |
78 | cov_mark::check!(register_attr); | 76 | cov_mark::check!(register_attr); |
79 | cov_mark::check!(register_tool); | 77 | cov_mark::check!(register_tool); |
80 | check_no_diagnostics( | 78 | check_diagnostics( |
81 | r#" | 79 | r#" |
82 | #![register_tool(tool)] | 80 | #![register_tool(tool)] |
83 | #![register_attr(attr)] | 81 | #![register_attr(attr)] |
diff --git a/crates/ide/src/diagnostics/missing_fields.rs b/crates/ide/src/diagnostics/missing_fields.rs index 66575f713..95cd64956 100644 --- a/crates/ide/src/diagnostics/missing_fields.rs +++ b/crates/ide/src/diagnostics/missing_fields.rs | |||
@@ -77,7 +77,7 @@ fn fixes(ctx: &DiagnosticsContext<'_>, d: &hir::MissingFields) -> Option<Vec<Ass | |||
77 | 77 | ||
78 | #[cfg(test)] | 78 | #[cfg(test)] |
79 | mod tests { | 79 | mod tests { |
80 | use crate::diagnostics::tests::{check_diagnostics, check_fix, check_no_diagnostics}; | 80 | use crate::diagnostics::tests::{check_diagnostics, check_fix}; |
81 | 81 | ||
82 | #[test] | 82 | #[test] |
83 | fn missing_record_pat_field_diagnostic() { | 83 | fn missing_record_pat_field_diagnostic() { |
@@ -203,7 +203,7 @@ fn test_fn() { | |||
203 | 203 | ||
204 | #[test] | 204 | #[test] |
205 | fn test_fill_struct_fields_no_diagnostic() { | 205 | fn test_fill_struct_fields_no_diagnostic() { |
206 | check_no_diagnostics( | 206 | check_diagnostics( |
207 | r#" | 207 | r#" |
208 | struct TestStruct { one: i32, two: i64 } | 208 | struct TestStruct { one: i32, two: i64 } |
209 | 209 | ||
@@ -217,7 +217,7 @@ fn test_fn() { | |||
217 | 217 | ||
218 | #[test] | 218 | #[test] |
219 | fn test_fill_struct_fields_no_diagnostic_on_spread() { | 219 | fn test_fill_struct_fields_no_diagnostic_on_spread() { |
220 | check_no_diagnostics( | 220 | check_diagnostics( |
221 | r#" | 221 | r#" |
222 | struct TestStruct { one: i32, two: i64 } | 222 | struct TestStruct { one: i32, two: i64 } |
223 | 223 | ||