Add a compiler box test for Boolean.hashCode()

This commit is contained in:
Abduqodiri Qurbonzoda
2023-06-12 00:13:54 +03:00
committed by Space Team
parent 193aa0f935
commit 36924775c8
16 changed files with 114 additions and 0 deletions
@@ -24981,6 +24981,12 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/primitiveTypes"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS, true);
}
@Test
@TestMetadata("booleanHashCode.kt")
public void testBooleanHashCode() throws Exception {
runTest("compiler/testData/codegen/box/primitiveTypes/booleanHashCode.kt");
}
@Test
@TestMetadata("comparisonWithNullCallsFun.kt")
public void testComparisonWithNullCallsFun() throws Exception {
@@ -25197,6 +25197,12 @@ public class FirJsCodegenBoxTestGenerated extends AbstractFirJsCodegenBoxTest {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/primitiveTypes"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS_IR, true);
}
@Test
@TestMetadata("booleanHashCode.kt")
public void testBooleanHashCode() throws Exception {
runTest("compiler/testData/codegen/box/primitiveTypes/booleanHashCode.kt");
}
@Test
@TestMetadata("comparisonWithNullCallsFun.kt")
public void testComparisonWithNullCallsFun() throws Exception {
@@ -25197,6 +25197,12 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/primitiveTypes"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS_IR, true);
}
@Test
@TestMetadata("booleanHashCode.kt")
public void testBooleanHashCode() throws Exception {
runTest("compiler/testData/codegen/box/primitiveTypes/booleanHashCode.kt");
}
@Test
@TestMetadata("comparisonWithNullCallsFun.kt")
public void testComparisonWithNullCallsFun() throws Exception {
@@ -25197,6 +25197,12 @@ public class IrJsES6CodegenBoxTestGenerated extends AbstractIrJsES6CodegenBoxTes
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/primitiveTypes"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS_IR_ES6, true);
}
@Test
@TestMetadata("booleanHashCode.kt")
public void testBooleanHashCode() throws Exception {
runTest("compiler/testData/codegen/box/primitiveTypes/booleanHashCode.kt");
}
@Test
@TestMetadata("comparisonWithNullCallsFun.kt")
public void testComparisonWithNullCallsFun() throws Exception {