Skip to content

Commit

Permalink
! F AraxisMerge Reporter on Mac - closes #172
Browse files Browse the repository at this point in the history
  • Loading branch information
LarsEckart committed Sep 30, 2024
1 parent 14d0047 commit 33c54e3
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ public static class Mac
TEXT);
public static DiffInfo VISUAL_STUDIO_CODE = new DiffInfo(
"/Applications/Visual Studio Code.app/Contents/Resources/app/bin/code", "-d %s %s", TEXT);
public static DiffInfo ARAXIS_MERGE = new DiffInfo(
"/Applications/Araxis Merge.app/Contents/Utilities/compare", TEXT_AND_IMAGE);
}
public static class Windows
{
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package org.approvaltests.reporters.macosx;

import org.approvaltests.reporters.DiffPrograms;
import org.approvaltests.reporters.GenericDiffReporter;

public class AraxisMergeReporter extends GenericDiffReporter
{
public static final AraxisMergeReporter INSTANCE = new AraxisMergeReporter();
public AraxisMergeReporter()
{
super(DiffPrograms.Mac.ARAXIS_MERGE);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,22 @@
public class MacDiffReporter extends FirstWorkingReporter
{
public static final MacDiffReporter INSTANCE = new MacDiffReporter();
// @formatter:off
public MacDiffReporter()
{
super(
// @formatter:off
// begin-snippet: mac_diff_reporters
BeyondCompareMacReporter.INSTANCE,
DiffMergeMacOsReporter.INSTANCE,
KaleidoscopeDiffReporter.INSTANCE,
P4MergeReporter.INSTANCE,
AraxisMergeReporter.INSTANCE,
KDiff3MacReporter.INSTANCE,
TkDiffReporter.INSTANCE,
IntelliJReporter.INSTANCE,
VisualStudioCodeReporter.INSTANCE
// end-snippet
// @formatter:on
);
}
// @formatter:on
}

0 comments on commit 33c54e3

Please sign in to comment.