Remove redundant calls of the conversion method: report for unsigned types

#KT-30263 Fixed
This commit is contained in:
Toshiaki Kameyama
2020-03-03 15:51:09 +09:00
committed by Yan Zhulanow
parent 38b6b73745
commit a2f55e8b7c
10 changed files with 58 additions and 1 deletions
@@ -14209,6 +14209,26 @@ public class IntentionTestGenerated extends AbstractIntentionTest {
runTest("idea/testData/intentions/removeRedundantCallsOfConversionMethods/toOtherType.kt");
}
@TestMetadata("uByte.kt")
public void testUByte() throws Exception {
runTest("idea/testData/intentions/removeRedundantCallsOfConversionMethods/uByte.kt");
}
@TestMetadata("uInt.kt")
public void testUInt() throws Exception {
runTest("idea/testData/intentions/removeRedundantCallsOfConversionMethods/uInt.kt");
}
@TestMetadata("uLong.kt")
public void testULong() throws Exception {
runTest("idea/testData/intentions/removeRedundantCallsOfConversionMethods/uLong.kt");
}
@TestMetadata("uShort.kt")
public void testUShort() throws Exception {
runTest("idea/testData/intentions/removeRedundantCallsOfConversionMethods/uShort.kt");
}
@TestMetadata("variable.kt")
public void testVariable() throws Exception {
runTest("idea/testData/intentions/removeRedundantCallsOfConversionMethods/variable.kt");