Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/NesTiler.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/Tests
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-10-27 08:22:36 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-10-27 08:26:43 +0300
commitf4800d51617609dcde745e8c826e14bf30a8ad9a (patch)
treec659fb07334861175c1609d7bc55e21a4e84f002 /Tests
parent7a4d9270dcffa9684607745db22f91e9dbec93db (diff)
Command arguments moved to constants.
Diffstat (limited to 'Tests')
-rw-r--r--Tests/Program.cs22
1 files changed, 11 insertions, 11 deletions
diff --git a/Tests/Program.cs b/Tests/Program.cs
index a883927..843ef0d 100644
--- a/Tests/Program.cs
+++ b/Tests/Program.cs
@@ -183,7 +183,7 @@ namespace com.clusterrr.Famicom.NesTiler.Tests
var prefix = Path.GetFileNameWithoutExtension(imagePath);
var args = new string[] {
"--enable-palettes", "0,1,2,3",
- "--input-0", $"{imagePath}",
+ "--in-0", $"{imagePath}",
"--out-pattern-table-0", PatternTablePath(prefix, 0),
"--out-name-table-0", NameTablePath(prefix, 0),
"--out-attribute-table-0", AttrTablePath(prefix, 0),
@@ -218,8 +218,8 @@ namespace com.clusterrr.Famicom.NesTiler.Tests
var prefix = Path.GetFileNameWithoutExtension(imagePath1) + "_" + Path.GetFileNameWithoutExtension(imagePath2);
var args = new string[] {
"--enable-palettes", "0,1,2,3",
- "--input-0", $"{imagePath1}",
- "--input-1", $"{imagePath2}",
+ "--in-0", $"{imagePath1}",
+ "--in-1", $"{imagePath2}",
"--out-pattern-table", PatternTablePath(prefix, 0),
"--out-name-table-0", NameTablePath(prefix, 0),
"--out-name-table-1", NameTablePath(prefix, 1),
@@ -259,8 +259,8 @@ namespace com.clusterrr.Famicom.NesTiler.Tests
var prefix = Path.GetFileNameWithoutExtension(imagePath);
var args = new string[] {
"--enable-palettes", "0,1,2,3",
- "--input-0", $"{imagePath}:0:128",
- "--input-1", $"{imagePath}:128:112",
+ "--in-0", $"{imagePath}:0:128",
+ "--in-1", $"{imagePath}:128:112",
"--out-pattern-table-0", PatternTablePath(prefix, 0),
"--out-pattern-table-1", PatternTablePath(prefix, 1),
"--out-name-table-0", NameTablePath(prefix, 0),
@@ -301,8 +301,8 @@ namespace com.clusterrr.Famicom.NesTiler.Tests
var prefix = Path.GetFileNameWithoutExtension(imagePath);
var args = new string[] {
"--enable-palettes", "0,1,2,3",
- "--input-0", $"{imagePath}:0:128",
- "--input-1", $"{imagePath}:128:112",
+ "--in-0", $"{imagePath}:0:128",
+ "--in-1", $"{imagePath}:128:112",
"--out-pattern-table-0", PatternTablePath(prefix, 0),
"--out-pattern-table-1", PatternTablePath(prefix, 1),
"--out-name-table-0", NameTablePath(prefix, 0),
@@ -344,10 +344,10 @@ namespace com.clusterrr.Famicom.NesTiler.Tests
var prefix = Path.GetFileNameWithoutExtension(imagePath);
var args = new string[] {
"--enable-palettes", "0,1,2,3",
- "--input-0", $"{imagePath}:0:64",
- "--input-1", $"{imagePath}:64:64",
- "--input-2", $"{imagePath}:128:64",
- "--input-3", $"{imagePath}:192:48",
+ "--in-0", $"{imagePath}:0:64",
+ "--in-1", $"{imagePath}:64:64",
+ "--in-2", $"{imagePath}:128:64",
+ "--in-3", $"{imagePath}:192:48",
"--out-pattern-table-0", PatternTablePath(prefix, 0),
"--out-pattern-table-1", PatternTablePath(prefix, 1),
"--out-pattern-table-2", PatternTablePath(prefix, 2),