Package com.eclipsesource.jshint

Examples of com.eclipsesource.jshint.Text


  }

  @Test
  public void handleProblem_createsProblemAtLineWhenCharacterExceedsDocument() throws CoreException
  {
    MarkerHandler handler = new MarkerHandler( adapter, new Text( "line1\nline2\n" ) );

    handler.handleProblem( mockWarning( 1, 13, "test" ) );

    verify( adapter ).createWarning( 1, -1, -1, "test" );
  }
View Full Code Here

TOP

Related Classes of com.eclipsesource.jshint.Text

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.