Unnamed: 0 int64 0 305k | body stringlengths 7 52.9k | name stringlengths 1 185 |
|---|---|---|
57,400 | void () { doTest("btn.fxml", "MyController.java"); } | testIdOutOfHierarchy |
57,401 | void () { doTest("btn.fxml"); } | testIncludeBtn |
57,402 | void () { doTest(getTestName(false) + ".java"); } | testWrongBindingType |
57,403 | void () { doTest("btn.fxml"); } | testAllowIncludeTagInsideDefine |
57,404 | void () { doTest(); } | testValueOfAcceptance |
57,405 | void () { doTest(); } | testInstantiationAcceptance |
57,406 | void () { myFixture.addClass(""" package p; public class Root extends javafx.scene.layout.GridPane{ public Root(@javafx.beans.NamedArg("axis") javafx.scene.Node node ) { super(node); } public javafx.beans.property.Property<javafx.scene.Node> axis; public void setAxis() {}}\s"""); doTest(getTestName(true) + ".fxml"); } | testInstantiationAcceptanceWithNameArg |
57,407 | void () { doTest(); } | testFqnTagNames |
57,408 | void () { doTest(); } | testRootTag |
57,409 | void () { doTest(); } | testUnresolvedRootTag |
57,410 | void () { doTest(); } | testRootTagWithoutType |
57,411 | void () { doTest(); } | testRootTagWithImport |
57,412 | void () { doTest(); } | testReadOnly |
57,413 | void () { doTest(); } | testReadOnly1 |
57,414 | void () { doTest("s1.js"); } | testScriptSource |
57,415 | void () { doTest(); } | testPropertyNameExpression |
57,416 | void () { doTest(); } | testPropertyChainExpression |
57,417 | void () { doTest(); } | testIncorrectPropertyExpressionSyntax |
57,418 | void (String additionalPath) { myFixture.configureByFiles(getTestName(true) + ".fxml", additionalPath); myFixture.testHighlighting(false, false, false, getTestName(true) + ".fxml"); } | doTest |
57,419 | void (String... paths) { myFixture.configureByFiles(paths); myFixture.testHighlighting(false, false, false, paths[0]); } | doTest |
57,420 | void () { doTest(); } | testExpressionBinding |
57,421 | void () { doTest(); } | testPropertyWithoutField |
57,422 | void () { doTest(); } | testRootTagProperties |
57,423 | void () { doTest(); } | testBooleanPropertyWithoutField |
57,424 | void () { doTest(); } | testShortNamesInRootType |
57,425 | void () { doTest(); } | testLineChartInstantiation |
57,426 | void () { doTest(); } | testUnexpectedNode |
57,427 | void () { doTest(); } | testDefaultPropertyField |
57,428 | void () { doTest(); } | testPrimitiveSubtags |
57,429 | void () { doTest(); } | testReferencePosition |
57,430 | void () { doTest(); } | testAcceptReferenceInsideDefine |
57,431 | void () { doTest(); } | testRootTagOnDifferentLevels |
57,432 | void () { doTest(); } | testAbsenceOfDefineAttributes |
57,433 | void () { doTest(); } | testCopyReference |
57,434 | void () { doTest(); } | testConstantValue |
57,435 | void () { doTest(); } | testEnumConstantValue |
57,436 | void () { doTest("model/" + getTestName(false) + "Model.java"); } | testNestedClassConstants |
57,437 | void () { doTest(); } | testBoxedConstantValue |
57,438 | void () { doTest(); } | testLiteralValue |
57,439 | void () { doTest(); } | testNullObjectValue |
57,440 | void () { doTest(); } | testNullPrimitiveValue |
57,441 | void () { doTest(); } | testFactoryMethod |
57,442 | void () { doTest(getTestName(false) + ".java"); } | testPrivateControllerMethod |
57,443 | void () { doTest(); } | testPropertyTagCompatibleClass |
57,444 | void () { doTest(); } | testPropertyTagCompatiblePrimitive |
57,445 | void () { doTest(); } | testPropertyTagIncompatibleClass |
57,446 | void () { doTest(); } | testPropertyTagIncompatiblePrimitive |
57,447 | void () { doWarningsTest(); } | testPropertyTagUnrelatedClass |
57,448 | void () { doWarningsTest(); } | testPropertyTagUnrelatedPrimitive |
57,449 | void () { myFixture.addFileToProject("sample.fxml", """ <?import javafx.scene.layout.GridPane?> <fx:root type="javafx.scene.layout.GridPane" xmlns:fx="http://javafx.com/fxml"/> """); doWarningsTest(); } | testCharsetInInclude |
57,450 | void () { myFixture.addFileToProject("sample.fxml", """ <?import javafx.scene.layout.GridPane?> <fx:root type="javafx.scene.layout.GridPane" xmlns:fx="http://javafx.com/fxml"/> """); doWarningsTest(); } | testIncludedForm |
57,451 | void () { myFixture.addFileToProject("sample.fxml", "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" + "<?import javafx.scene.control.*?>\n" + "<?import javafx.scene.layout.*?>\n" + "<AnchorPane id=\"AnchorPane\" xmlns:fx=\"http://javafx.com/fxml\" fx:controller=\"" + getTestName(false)+ "\">\n" + " <Button fx:id=\"id1\"... | testInjectedControllerFields |
57,452 | void () { doTest(); } | testAbsoluteRemoteUrl |
57,453 | void () { myFixture.addFileToProject("mystyle.css", ".myStyle {}"); myFixture.addFileToProject("very/deeply/located/small.css", ".small {}"); doTest(); } | testMultipleStylesheetsAttribute |
57,454 | void () { myFixture.addFileToProject("mystyle.css", ".myStyle {}"); myFixture.addFileToProject("very/deeply/located/small.css", ".small {}"); doTest(); } | testMultipleStylesheetsTag |
57,455 | void () { myFixture.configureByFiles(getTestName(true) + ".fxml", getTestName(false) + ".java"); myFixture.testHighlighting(true, true, true, getTestName(false) + ".java"); } | testPrivateEventHandler |
57,456 | void () { doTestControllerSuperclass(); } | testFxIdInSuperclass |
57,457 | void () { doTestControllerSuperclass(); } | testEventHandlerInSuperclass |
57,458 | void () { final String superclass = getTestName(false); myFixture.copyFileToProject(superclass + ".java"); myFixture.addClass("public class SubclassingController extends " + superclass + " {}"); myFixture.addFileToProject("sample.fxml", """ <?import javafx.scene.layout.VBox?> <?import javafx.scene.control.Button?> <VBo... | doTestControllerSuperclass |
57,459 | void () { myFixture.addFileToProject("messages.properties", """ string.key=My text double.key=123.456 """); doTest(); } | testResourceKeyInAttribute |
57,460 | void () { myFixture.configureByFiles(getTestName(true) + ".fxml", getTestName(false) + ".java"); doTest(); } | testFxIdUsedInSameNode |
57,461 | void () { doTest(); } | testConstructorNamedArg |
57,462 | void () { myFixture.addClass("package java.util; public class ResourceBundle {}"); myFixture.testHighlighting(true, false, false, getTestName(false) + ".java", getTestName(true) + ".fxml"); } | testBuiltInFxmlFieldsAndMethod |
57,463 | void () { myFixture.testHighlighting(false, false, false, getTestName(true) + ".fxml"); } | doTest |
57,464 | void () { myFixture.testHighlighting(true, false, false, getTestName(true) + ".fxml"); } | doWarningsTest |
57,465 | void () { myFixture.enableInspections(new XmlPathReferenceInspection(), new RequiredAttributesInspection(), new UnusedDeclarationInspectionBase(true)); } | enableInspections |
57,466 | String () { return PluginPathManager.getPluginHomePath("javaFX") + "/testData/highlighting/"; } | getTestDataPath |
57,467 | void () { myFixture.enableInspections(new JavaFxDefaultTagInspection()); } | enableInspections |
57,468 | void () { doLaunchQuickfixTest("children"); } | testChildren |
57,469 | void () { doLaunchQuickfixTest("children"); } | testEmptyChildren |
57,470 | void () { doHighlightingTest(); } | testFxCollectionsHighlighting |
57,471 | void () { doHighlightingTest(); } | testEmptyListHighlighting |
57,472 | void () { doHighlightingTest(); } | testEmptyCollapsedListHighlighting |
57,473 | void () { checkQuickFixNotAvailable("stylesheets"); } | testStylesheets |
57,474 | void () { myFixture.configureByFiles(getTestName(true) + ".fxml"); myFixture.checkHighlighting(); } | doHighlightingTest |
57,475 | String (String tagName) { return "Unwrap '" + tagName + "'"; } | getHint |
57,476 | String () { return PluginPathManager.getPluginHomePath("javaFX") + "/testData/inspections/defaultTag/"; } | getTestDataPath |
57,477 | LightProjectDescriptor () { return AbstractJavaFXTestCase.JAVA_FX_DESCRIPTOR; } | getProjectDescriptor |
57,478 | void () { doTest(); } | testAvailablePositions |
57,479 | void () { doTest("GridPane.columnIndex"); } | testStaticProperties |
57,480 | void () { doTest("GridPane.columnIndex"); } | testStaticPropertiesTag |
57,481 | void () { doTest("text"); } | testSimplePropertyTag |
57,482 | void () { doTest("children"); } | testListPropertyTag |
57,483 | void () { doTest("Button"); } | testClassInsideList |
57,484 | void () { doTest("Button"); } | testClassDefaultProperty |
57,485 | void () { doTest("Button"); } | testClassInsertImport |
57,486 | void () { doTest("fx:id"); } | testDefaultProperty |
57,487 | void () { doTest("fx:script"); } | testDefaultTag |
57,488 | void () { doTest(); } | testStaticPropertiesEnumValue |
57,489 | void () { doTest("TOP_LEFT"); } | testEnumConstantValue |
57,490 | void () { doTest("NEGATIVE_INFINITY"); } | testConstants |
57,491 | void () { doTest("text"); } | testReferencedAttributes |
57,492 | void () { doTest("observableArrayList"); } | testFactoryMethods |
57,493 | void () { doTest(); } | testVariableCompletion |
57,494 | void () { doTest("text"); } | testExpressionBinding |
57,495 | void () { doTest("mystyle.css", "mystyle.css"); } | testStylesheets |
57,496 | void () { doTest("mystyle.css", "mystyle.css"); } | testStylesheetsStringValue |
57,497 | void () { doTest("stylesheets"); } | testListAttributes |
57,498 | void () { doTest("blue"); } | testNamedColors |
57,499 | void () { doTest("GridPane"); } | testRootTagNameLayout |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.