[Misc] Fix errors checking in QuickFixMultiModuleTest
This test was checking errors *before* applying action, rather than *after*, like all other QuickFix-tests do. This commit moves errors-check after performing quick-fix action, and changes testdata: - for most tests errors are simply gone (as quickfix usually fixes that error) - also, for implementMembersInActualClassNoExpectMember we add 'DISABLE-ERROR', similarly to implementMembersInImplClassNonImplInheritor. This is needed because 'Implement Members'-fix created 'TODO'-calls, which are not resolved in those tests due to the lack of stdlib. Previously, there were no errors in this test exactly because file was checked *before* applying quickfix (i.e. when there were no 'TODO()' in file)
This commit is contained in:
-1
@@ -1,4 +1,3 @@
|
||||
// "Implement as constructor parameters" "true"
|
||||
// ERROR: Class 'End' is not abstract and does not implement abstract member public abstract val a: Int defined in IFoo
|
||||
|
||||
actual class <caret>End : IFoo
|
||||
-1
@@ -1,4 +1,3 @@
|
||||
// "Implement as constructor parameters" "true"
|
||||
// ERROR: Class 'End' is not abstract and does not implement abstract member public abstract val a: Int defined in IFoo
|
||||
|
||||
actual class End(override val a: Int) : IFoo
|
||||
Reference in New Issue
Block a user