File tree Expand file tree Collapse file tree
src/main/kotlin/com/github/xepozz/testo/tests Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ class TestoTestLocator(pathMapper: PhpPathMapper) :
5454 * - path/to/file.php::\Full\Qualified\ClassName::methodName
5555 * - path/to/file.php::\Full\Qualified\FunctionName
5656 */
57- override fun getLocationInfo (link : String ): LocationInfo ? {
57+ public override fun getLocationInfo (link : String ): LocationInfo ? {
5858 val locations = link.split(" ::" ).dropLastWhile { it.isEmpty() }
5959// println("locations: $locations, link: $link")
6060
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import com.jetbrains.php.PhpTestFrameworkVersionDetector
77object TestoVersionDetector : PhpTestFrameworkVersionDetector<String>() {
88 override fun getPresentableName () = TestoBundle .message(" testo.local.run.display.name" )
99
10- override fun getVersionOptions () = arrayOf(" --version" , " --no-ansi" )
10+ public override fun getVersionOptions () = arrayOf(" --version" , " --no-ansi" )
1111
1212 public override fun parse (s : String ): String {
1313 val version = s.substringAfter(" Testo " )
You can’t perform that action at this time.
0 commit comments