Skip to content

Commit

Permalink
Merge pull request #55 from JoaoCipriano/visual-resources
Browse files Browse the repository at this point in the history
Visual additions and adjustments
  • Loading branch information
mjedynak authored Sep 23, 2022
2 parents 20e2c48 + d90bc02 commit 99dc043
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 6 deletions.
10 changes: 5 additions & 5 deletions META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<idea-plugin url="https://github.com/mjedynak/pit-idea-plugin">
<name>PIT mutation testing Idea plugin</name>
<name>PIT Mutation Testing Idea</name>
<description><![CDATA[
IntelliJ IDEA plugin for PIT mutation testing (http://pitest.org).
IntelliJ IDEA plugin for PIT Mutation Testing (pitest.org).
<br/>
Bundled with PIT 1.7.4 and JUnit5 plugin 0.15
<br/><br/>
Expand Down Expand Up @@ -142,16 +142,16 @@
</project-components>

<actions>
<action id="pitest.RunAllPit" class="pl.mjedynak.idea.plugins.pit.actions.RunAllPitAction" text="Pitest all tests in module" description="Mutate all tests against all classes in the project" icon="/pit.gif">
<action id="pitest.RunAllPit" class="pl.mjedynak.idea.plugins.pit.actions.RunAllPitAction" text="Pitest All Tests in Module" description="Mutate all tests against all classes in the project" icon="/pit.svg">
<add-to-group group-id="ProjectViewPopupMenuRunGroup" anchor="last"/>
<add-to-group group-id="EditorPopupMenu.Run" anchor="last"/>
</action>
<action id="pitest.RunSomePit"
class="pl.mjedynak.idea.plugins.pit.actions.RunSomeTestsPitAction" text="Pitest with these tests" description="Mutate only the tests in this directory against all classes in the project" icon="/pit.gif">
class="pl.mjedynak.idea.plugins.pit.actions.RunSomeTestsPitAction" text="Pitest with These Tests" description="Mutate only the tests in this directory against all classes in the project" icon="/pit.svg">
<add-to-group group-id="ProjectViewPopupMenuRunGroup" anchor="last"/>
</action>
<action id="pitest.TestSomePit"
class="pl.mjedynak.idea.plugins.pit.actions.PitTestSomeClassesAction" text="Pitest these classes" description="Mutate all tests against the classes in this directory" icon="/pit.gif">
class="pl.mjedynak.idea.plugins.pit.actions.PitTestSomeClassesAction" text="Pitest These Classes" description="Mutate all tests against the classes in this directory" icon="/pit.svg">
<add-to-group group-id="ProjectViewPopupMenuRunGroup" anchor="last"/>
</action>
</actions>
Expand Down
5 changes: 5 additions & 0 deletions META-INF/pluginIcon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jar {
metaInf {
from('META-INF') {
include 'plugin.xml'
include 'pluginIcon.svg'
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

public class PitConfigurationType implements ConfigurationType {

private static final Icon ICON = IconLoader.getIcon("/pit.gif", PitConfigurationType.class);
private static final Icon ICON = IconLoader.getIcon("/pit.svg", PitConfigurationType.class);
private static final String DISPLAY_NAME = "PIT Runner";
private static final String ID = "PIT";
private static final String CONFIGURATION_DESCRIPTION = "Executes PIT mutation testing";
Expand Down
Binary file removed src/main/resources/pit.gif
Binary file not shown.
5 changes: 5 additions & 0 deletions src/main/resources/pit.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 99dc043

Please sign in to comment.