flutter-idea/testSrc/unit/io/flutter/editor/FlutterIconLineMarkerTest.java [42:49]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void testLocatesIconCtor() throws Exception {
    final PsiElement testIdentifier =
      setUpDartElement("main() { IconData(0xe190, fontFamily: 'MaterialIcons'); }", "IconData", LeafPsiElement.class);
    final LineMarkerInfo<?> marker = new FlutterIconLineMarkerProvider().getLineMarkerInfo(testIdentifier, getSdk());
    assertNotNull(marker);
    final DartCallExpression element = DartSyntax.findEnclosingFunctionCall(testIdentifier, "IconData");
    assertNotNull(element);
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



flutter-idea/testSrc/unit/io/flutter/editor/FlutterIconLineMarkerTest.java [52:59]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void testLocatesCupertinoIconCtor() throws Exception {
    final PsiElement testIdentifier =
      setUpDartElement("main() { IconData(0xe190, fontFamily: 'CupertinoIcons'); }", "IconData", LeafPsiElement.class);
    final LineMarkerInfo<?> marker = new FlutterIconLineMarkerProvider().getLineMarkerInfo(testIdentifier, getSdk());
    assertNotNull(marker);
    final DartCallExpression element = DartSyntax.findEnclosingFunctionCall(testIdentifier, "IconData");
    assertNotNull(element);
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



