File tree Expand file tree Collapse file tree 4 files changed +16
-3
lines changed
tests/fr/adrienbrault/idea/symfony2plugin/tests/templating/path Expand file tree Collapse file tree 4 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ before_script:
1515env :
1616 - PHPSTORM_ENV=2017.2
1717 - PHPSTORM_ENV=2017.2.4
18+ - PHPSTORM_ENV=2017.3.2
1819 - PHPSTORM_ENV=eap
1920
2021matrix :
Original file line number Diff line number Diff line change 687687 </group >
688688
689689 <action id =" SymfonyWebTestCaseGenerator" class =" fr.adrienbrault.idea.symfony2plugin.action.bundle.WebTestCaseGeneratorAction" >
690- <add-to-group group-id =" PhpUnitNewGroup" anchor =" last" />
690+ <!-- <add-to-group group-id="PhpUnitNewGroup" anchor="last"/> DROP in Phpstorm 2017.3 -->
691+ <add-to-group group-id =" NewGroup" anchor =" last" />
691692 </action >
692693
693694 <action id =" Symfony2Symbols" class =" fr.adrienbrault.idea.symfony2plugin.action.SymfonySymbolSearchAction" text =" Symfony Symbol..." icon =" SymfonyIcons.Symfony" >
Original file line number Diff line number Diff line change 11package fr .adrienbrault .idea .symfony2plugin .tests .templating .path ;
22
3- import com .intellij .util .SystemIndependent ;
43import fr .adrienbrault .idea .symfony2plugin .templating .path .TwigPath ;
54import fr .adrienbrault .idea .symfony2plugin .tests .SymfonyTempCodeInsightFixtureTestCase ;
65
@@ -24,7 +23,7 @@ public void testRelativePathResolving() {
2423 public void testAbsolutePathResolving () {
2524 createFile ("app/views" );
2625
27- @ SystemIndependent String basePath = getProject ().getBasePath ();
26+ String basePath = getProject ().getBasePath ();
2827 TwigPath twigPath = new TwigPath (basePath + "/app" , "namespace" );
2928 assertEquals ("app" , twigPath .getDirectory (getProject ()).getName ());
3029
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ if [ "$PHPSTORM_ENV" == "2017.2" ]; then
55 ideaVersion=" 2017.2.5"
66elif [ " $PHPSTORM_ENV " == " 2017.2.4" ]; then
77 ideaVersion=" 2017.2.5"
8+ elif [ " $PHPSTORM_ENV " == " 2017.3.2" ]; then
9+ ideaVersion=" 2017.3.1"
810elif [ " $PHPSTORM_ENV " == " eap" ]; then
911 ideaVersion=" 163.5644.15"
1012fi
@@ -77,6 +79,16 @@ elif [ "$PHPSTORM_ENV" == "2017.2.4" ]; then
7779 download " http://phpstorm.espend.de/files/proxy/phpstorm-2017.2.4-twig.zip"
7880 unzip -qo $travisCache /phpstorm-2017.2.4-twig.zip -d ./plugins
7981
82+ elif [ " $PHPSTORM_ENV " == " 2017.3.2" ]; then
83+
84+ # php
85+ download " http://phpstorm.espend.de/files/proxy/phpstorm-2017.3.2-php.zip"
86+ unzip -qo $travisCache /phpstorm-2017.3.2-php.zip -d ./plugins
87+
88+ # twig
89+ download " http://phpstorm.espend.de/files/proxy/phpstorm-2017.3.2-twig.zip"
90+ unzip -qo $travisCache /phpstorm-2017.3.2-twig.zip -d ./plugins
91+
8092elif [ " $PHPSTORM_ENV " == " eap" ]; then
8193
8294 # php
You can’t perform that action at this time.
0 commit comments