xunit.ts 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +2 -0
- package/.eslintrc.json +37 -0
- package/cli.ts +5 -5
- package/dist/cli.js.map +1 -1
- package/dist/src/Assertions/Contains.js +1 -1
- package/dist/src/Assertions/Contains.js.map +1 -1
- package/dist/src/Assertions/Count.js.map +1 -1
- package/dist/src/Assertions/Defined.js +2 -2
- package/dist/src/Assertions/Defined.js.map +1 -1
- package/dist/src/Assertions/DoesNotContain.js +1 -1
- package/dist/src/Assertions/DoesNotContain.js.map +1 -1
- package/dist/src/Assertions/DoesNotThrow.js +2 -2
- package/dist/src/Assertions/DoesNotThrow.js.map +1 -1
- package/dist/src/Assertions/Empty.js +1 -1
- package/dist/src/Assertions/Empty.js.map +1 -1
- package/dist/src/Assertions/Equal.js +1 -1
- package/dist/src/Assertions/Equal.js.map +1 -1
- package/dist/src/Assertions/False.js +1 -1
- package/dist/src/Assertions/False.js.map +1 -1
- package/dist/src/Assertions/InstanceOf.d.ts +1 -1
- package/dist/src/Assertions/InstanceOf.d.ts.map +1 -1
- package/dist/src/Assertions/InstanceOf.js.map +1 -1
- package/dist/src/Assertions/NotEmpty.js +2 -2
- package/dist/src/Assertions/NotEmpty.js.map +1 -1
- package/dist/src/Assertions/NotEqual.js +1 -1
- package/dist/src/Assertions/NotEqual.js.map +1 -1
- package/dist/src/Assertions/NotNull.js +2 -2
- package/dist/src/Assertions/NotNull.js.map +1 -1
- package/dist/src/Assertions/Null.js +1 -1
- package/dist/src/Assertions/Null.js.map +1 -1
- package/dist/src/Assertions/StringContains.js +1 -1
- package/dist/src/Assertions/StringContains.js.map +1 -1
- package/dist/src/Assertions/StringDoesNotContain.d.ts.map +1 -1
- package/dist/src/Assertions/StringDoesNotContain.js +1 -1
- package/dist/src/Assertions/StringDoesNotContain.js.map +1 -1
- package/dist/src/Assertions/StringDoesNotEndWith.js +1 -1
- package/dist/src/Assertions/StringDoesNotEndWith.js.map +1 -1
- package/dist/src/Assertions/StringDoesNotStartWith.d.ts.map +1 -1
- package/dist/src/Assertions/StringDoesNotStartWith.js +1 -1
- package/dist/src/Assertions/StringDoesNotStartWith.js.map +1 -1
- package/dist/src/Assertions/StringEndsWith.js +1 -1
- package/dist/src/Assertions/StringEndsWith.js.map +1 -1
- package/dist/src/Assertions/StringStartsWith.d.ts.map +1 -1
- package/dist/src/Assertions/StringStartsWith.js +1 -1
- package/dist/src/Assertions/StringStartsWith.js.map +1 -1
- package/dist/src/Assertions/Throws.js +1 -1
- package/dist/src/Assertions/Throws.js.map +1 -1
- package/dist/src/Assertions/True.js +1 -1
- package/dist/src/Assertions/True.js.map +1 -1
- package/dist/src/Assertions/Undefined.js +1 -1
- package/dist/src/Assertions/Undefined.js.map +1 -1
- package/dist/src/Assertions/index.d.ts +22 -22
- package/dist/src/Assertions/index.d.ts.map +1 -1
- package/dist/src/Assertions/index.js.map +1 -1
- package/dist/src/CLI.d.ts.map +1 -1
- package/dist/src/CLI.js +2 -2
- package/dist/src/CLI.js.map +1 -1
- package/dist/src/Factory.d.ts +4 -4
- package/dist/src/Factory.d.ts.map +1 -1
- package/dist/src/Factory.js.map +1 -1
- package/dist/src/Framework/ResultType.d.ts.map +1 -1
- package/dist/src/Framework/ResultType.js.map +1 -1
- package/dist/src/Framework/Test.d.ts.map +1 -1
- package/dist/src/Framework/Test.js.map +1 -1
- package/dist/src/Framework/TestName.d.ts.map +1 -1
- package/dist/src/Framework/TestName.js.map +1 -1
- package/dist/src/Framework/TestResult.d.ts.map +1 -1
- package/dist/src/Framework/TestResult.js.map +1 -1
- package/dist/src/Framework/TestSuite.d.ts +1 -1
- package/dist/src/Framework/TestSuite.d.ts.map +1 -1
- package/dist/src/Framework/TestSuite.js.map +1 -1
- package/dist/src/Framework/TestSuiteResults.d.ts +1 -1
- package/dist/src/Framework/TestSuiteResults.d.ts.map +1 -1
- package/dist/src/Framework/TestSuiteResults.js.map +1 -1
- package/dist/src/IO/FileSystem.d.ts +2 -2
- package/dist/src/IO/FileSystem.d.ts.map +1 -1
- package/dist/src/IO/FileSystem.js +6 -6
- package/dist/src/IO/FileSystem.js.map +1 -1
- package/dist/src/IO/Output.d.ts.map +1 -1
- package/dist/src/IO/Output.js.map +1 -1
- package/dist/src/Reporters/ConsoleReporter.d.ts.map +1 -1
- package/dist/src/Reporters/ConsoleReporter.js +8 -7
- package/dist/src/Reporters/ConsoleReporter.js.map +1 -1
- package/dist/src/Reporters/FileReporter.d.ts.map +1 -1
- package/dist/src/Reporters/FileReporter.js +1 -0
- package/dist/src/Reporters/FileReporter.js.map +1 -1
- package/dist/src/Reporters/JUnitReporter.d.ts +2 -2
- package/dist/src/Reporters/JUnitReporter.d.ts.map +1 -1
- package/dist/src/Reporters/JUnitReporter.js +7 -7
- package/dist/src/Reporters/JUnitReporter.js.map +1 -1
- package/dist/src/Reporters/ResultReporter.d.ts +3 -3
- package/dist/src/Reporters/ResultReporter.d.ts.map +1 -1
- package/dist/src/Reporters/SonarReporter.d.ts +2 -2
- package/dist/src/Reporters/SonarReporter.d.ts.map +1 -1
- package/dist/src/Reporters/SonarReporter.js +16 -16
- package/dist/src/Reporters/SonarReporter.js.map +1 -1
- package/dist/src/Reporters/XMLReporter.d.ts.map +1 -1
- package/dist/src/Reporters/XMLReporter.js.map +1 -1
- package/dist/src/Runners/Runner.d.ts +3 -3
- package/dist/src/Runners/Runner.d.ts.map +1 -1
- package/dist/src/Runners/Runner.js +5 -5
- package/dist/src/Runners/Runner.js.map +1 -1
- package/dist/src/Runners/TestRunner.d.ts +4 -4
- package/dist/src/Runners/TestRunner.d.ts.map +1 -1
- package/dist/src/Runners/TestRunner.js +4 -4
- package/dist/src/Runners/TestRunner.js.map +1 -1
- package/dist/src/Runners/TestSuiteLoader.d.ts +3 -3
- package/dist/src/Runners/TestSuiteLoader.d.ts.map +1 -1
- package/dist/src/Runners/TestSuiteLoader.js +15 -15
- package/dist/src/Runners/TestSuiteLoader.js.map +1 -1
- package/dist/src/Runners/TestSuiteRunner.d.ts +5 -5
- package/dist/src/Runners/TestSuiteRunner.d.ts.map +1 -1
- package/dist/src/Runners/TestSuiteRunner.js +1 -1
- package/dist/src/Runners/TestSuiteRunner.js.map +1 -1
- package/dist/xunit.d.ts +3 -3
- package/dist/xunit.d.ts.map +1 -1
- package/dist/xunit.js.map +1 -1
- package/icon.svg +74 -75
- package/logo.svg +130 -130
- package/package.json +43 -37
- package/src/Assertions/Contains.ts +10 -10
- package/src/Assertions/Count.ts +11 -11
- package/src/Assertions/Defined.ts +11 -11
- package/src/Assertions/DoesNotContain.ts +11 -11
- package/src/Assertions/DoesNotThrow.ts +13 -13
- package/src/Assertions/Empty.ts +11 -11
- package/src/Assertions/Equal.ts +12 -12
- package/src/Assertions/False.ts +11 -11
- package/src/Assertions/InstanceOf.ts +2 -2
- package/src/Assertions/NotEmpty.ts +11 -11
- package/src/Assertions/NotEqual.ts +12 -12
- package/src/Assertions/NotNull.ts +11 -11
- package/src/Assertions/Null.ts +11 -11
- package/src/Assertions/StringContains.ts +11 -11
- package/src/Assertions/StringDoesNotContain.ts +12 -12
- package/src/Assertions/StringDoesNotEndWith.ts +13 -13
- package/src/Assertions/StringDoesNotStartWith.ts +12 -12
- package/src/Assertions/StringEndsWith.ts +13 -13
- package/src/Assertions/StringStartsWith.ts +12 -12
- package/src/Assertions/Throws.ts +11 -11
- package/src/Assertions/True.ts +11 -11
- package/src/Assertions/Undefined.ts +12 -12
- package/src/Assertions/index.ts +45 -45
- package/src/CLI.ts +85 -85
- package/src/Factory.ts +25 -25
- package/src/Framework/ResultType.ts +4 -4
- package/src/Framework/Test.ts +6 -6
- package/src/Framework/TestName.ts +7 -7
- package/src/Framework/TestResult.ts +3 -2
- package/src/Framework/TestSuite.ts +18 -18
- package/src/Framework/TestSuiteResults.ts +17 -16
- package/src/IO/FileSystem.ts +28 -29
- package/src/IO/Output.ts +21 -20
- package/src/Reporters/ConsoleReporter.ts +88 -87
- package/src/Reporters/FileReporter.ts +29 -29
- package/src/Reporters/JUnitReporter.ts +80 -80
- package/src/Reporters/ResultReporter.ts +20 -12
- package/src/Reporters/SonarReporter.ts +86 -86
- package/src/Reporters/XMLReporter.ts +6 -6
- package/src/Runners/Runner.ts +21 -21
- package/src/Runners/TestRunner.ts +34 -33
- package/src/Runners/TestSuiteLoader.ts +41 -40
- package/src/Runners/TestSuiteRunner.ts +27 -26
- package/tsconfig.json +26 -26
- package/xunit.ts +6 -6
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import TestSuite from
|
|
2
|
-
import FileSystem from
|
|
1
|
+
import TestSuite from "../Framework/TestSuite";
|
|
2
|
+
import FileSystem from "../IO/FileSystem";
|
|
3
3
|
export default class TestSuiteLoader {
|
|
4
4
|
private readonly file_system;
|
|
5
5
|
constructor(file_system: FileSystem);
|
|
6
|
-
loadTestSuites(dir: string): Promise<Record<string, TestSuite>>;
|
|
7
6
|
static loadTestSuite(file: string): Promise<TestSuite | null>;
|
|
8
7
|
static getModulePath(current_dir: string, file: string): string;
|
|
9
8
|
static isFromNodeModules(dir: string): boolean;
|
|
9
|
+
loadTestSuites(dir: string): Promise<Record<string, TestSuite>>;
|
|
10
10
|
}
|
|
11
11
|
//# sourceMappingURL=TestSuiteLoader.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TestSuiteLoader.d.ts","sourceRoot":"","sources":["../../../src/Runners/TestSuiteLoader.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,wBAAwB,CAAC;AAC/C,OAAO,UAAU,MAAM,kBAAkB,CAAC;AAG1C,MAAM,CAAC,OAAO,OAAO,eAAe;
|
|
1
|
+
{"version":3,"file":"TestSuiteLoader.d.ts","sourceRoot":"","sources":["../../../src/Runners/TestSuiteLoader.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,wBAAwB,CAAC;AAC/C,OAAO,UAAU,MAAM,kBAAkB,CAAC;AAG1C,MAAM,CAAC,OAAO,OAAO,eAAe;IAEvB,OAAO,CAAC,QAAQ,CAAC,WAAW;gBAAX,WAAW,EAAE,UAAU;WAGvC,aAAa,CAAC,IAAI,EAAE,MAAM;IAavC,MAAM,CAAC,aAAa,CAAC,WAAW,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM;IAWtD,MAAM,CAAC,iBAAiB,CAAC,GAAG,EAAE,MAAM;IAI9B,cAAc,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC;CAYrE"}
|
|
@@ -38,20 +38,6 @@ class TestSuiteLoader {
|
|
|
38
38
|
constructor(file_system) {
|
|
39
39
|
this.file_system = file_system;
|
|
40
40
|
}
|
|
41
|
-
loadTestSuites(dir) {
|
|
42
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
43
|
-
const files = (yield this.file_system.getFiles(dir))
|
|
44
|
-
.filter((file) => FileSystem_1.default.extension(file) === FileSystem_1.default.extension(__filename));
|
|
45
|
-
const suites = {};
|
|
46
|
-
for (const file of files) {
|
|
47
|
-
const suite = yield TestSuiteLoader.loadTestSuite(file);
|
|
48
|
-
if (suite !== undefined && suite !== null) {
|
|
49
|
-
suites[file] = suite;
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
return suites;
|
|
53
|
-
});
|
|
54
|
-
}
|
|
55
41
|
static loadTestSuite(file) {
|
|
56
42
|
return __awaiter(this, void 0, void 0, function* () {
|
|
57
43
|
const module_path = TestSuiteLoader.getModulePath(__dirname, file);
|
|
@@ -76,7 +62,21 @@ class TestSuiteLoader {
|
|
|
76
62
|
return `${root}${path_1.default.sep}${module_name}`;
|
|
77
63
|
}
|
|
78
64
|
static isFromNodeModules(dir) {
|
|
79
|
-
return dir.indexOf(
|
|
65
|
+
return dir.indexOf("node_modules") !== -1;
|
|
66
|
+
}
|
|
67
|
+
loadTestSuites(dir) {
|
|
68
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
69
|
+
const files = (yield this.file_system.getFiles(dir))
|
|
70
|
+
.filter((file) => FileSystem_1.default.extension(file) === FileSystem_1.default.extension(__filename));
|
|
71
|
+
const suites = {};
|
|
72
|
+
for (const file of files) {
|
|
73
|
+
const suite = yield TestSuiteLoader.loadTestSuite(file);
|
|
74
|
+
if (suite !== undefined && suite !== null) {
|
|
75
|
+
suites[file] = suite;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
return suites;
|
|
79
|
+
});
|
|
80
80
|
}
|
|
81
81
|
}
|
|
82
82
|
exports.default = TestSuiteLoader;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TestSuiteLoader.js","sourceRoot":"","sources":["../../../src/Runners/TestSuiteLoader.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,uEAA+C;AAC/C,kEAA0C;AAC1C,gDAAwB;AAExB,MAAqB,eAAe;
|
|
1
|
+
{"version":3,"file":"TestSuiteLoader.js","sourceRoot":"","sources":["../../../src/Runners/TestSuiteLoader.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,uEAA+C;AAC/C,kEAA0C;AAC1C,gDAAwB;AAExB,MAAqB,eAAe;IAEnC,YAA6B,WAAuB;QAAvB,gBAAW,GAAX,WAAW,CAAY;IACpD,CAAC;IAED,MAAM,CAAO,aAAa,CAAC,IAAY;;YACtC,MAAM,WAAW,GAAG,eAAe,CAAC,aAAa,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;YACnE,MAAM,UAAU,GAAG,wDAAa,WAAW,GAAC,CAAC;YAC7C,IAAI,CAAC,CAAC,UAAU,CAAC,OAAO,CAAC,SAAS,YAAY,mBAAS,CAAC,EAAE;gBACzD,OAAO,IAAI,CAAC;aACZ;YAED,MAAM,KAAK,GAAG,UAAU,CAAC,OAAO,CAAC,SAAS,CAAC,QAAQ,EAAE,CAAC;YACtD,MAAM,KAAK,GAAc,IAAI,UAAU,CAAC,OAAO,EAAE,CAAC;YAClD,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;YACtB,OAAO,KAAK,CAAC;QACd,CAAC;KAAA;IAED,MAAM,CAAC,aAAa,CAAC,WAAmB,EAAE,IAAY;QACrD,MAAM,IAAI,GAAG,eAAe,CAAC,iBAAiB,CAAC,cAAI,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC;YACxE,CAAC,CAAC,KAAK,cAAI,CAAC,GAAG,KAAK,cAAI,CAAC,GAAG,KAAK,cAAI,CAAC,GAAG,KAAK,cAAI,CAAC,GAAG,IAAI;YAC1D,CAAC,CAAC,KAAK,cAAI,CAAC,GAAG,KAAK,cAAI,CAAC,GAAG,IAAI,CAAC;QAClC,MAAM,SAAS,GAAG,oBAAU,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;QAC7C,MAAM,WAAW,GAAG,SAAS,CAAC,MAAM,GAAG,CAAC;YACvC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,EAAE,IAAI,CAAC,MAAM,GAAG,SAAS,CAAC,MAAM,GAAG,CAAC,CAAC;YACpD,CAAC,CAAC,IAAI,CAAC;QACR,OAAO,GAAG,IAAI,GAAG,cAAI,CAAC,GAAG,GAAG,WAAW,EAAE,CAAC;IAC3C,CAAC;IAED,MAAM,CAAC,iBAAiB,CAAC,GAAW;QACnC,OAAO,GAAG,CAAC,OAAO,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC;IAC3C,CAAC;IAEK,cAAc,CAAC,GAAW;;YAC/B,MAAM,KAAK,GAAG,CAAC,MAAM,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC;iBAClD,MAAM,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,oBAAU,CAAC,SAAS,CAAC,IAAI,CAAC,KAAK,oBAAU,CAAC,SAAS,CAAC,UAAU,CAAC,CAAC,CAAC;YACpF,MAAM,MAAM,GAA8B,EAAE,CAAC;YAC7C,KAAK,MAAM,IAAI,IAAI,KAAK,EAAE;gBACzB,MAAM,KAAK,GAAG,MAAM,eAAe,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC;gBACxD,IAAI,KAAK,KAAK,SAAS,IAAI,KAAK,KAAK,IAAI,EAAE;oBAC1C,MAAM,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC;iBACrB;aACD;YACD,OAAO,MAAM,CAAC;QACf,CAAC;KAAA;CACD;AA7CD,kCA6CC"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import ResultReporter from
|
|
2
|
-
import TestSuite from
|
|
3
|
-
import TestSuiteResults from
|
|
4
|
-
import TestInfo from
|
|
5
|
-
import TestRunner from
|
|
1
|
+
import ResultReporter from "../Reporters/ResultReporter";
|
|
2
|
+
import TestSuite from "../Framework/TestSuite";
|
|
3
|
+
import TestSuiteResults from "../Framework/TestSuiteResults";
|
|
4
|
+
import TestInfo from "../Framework/TestInfo";
|
|
5
|
+
import TestRunner from "./TestRunner";
|
|
6
6
|
export default class TestSuiteRunner {
|
|
7
7
|
private readonly runner;
|
|
8
8
|
private readonly reporters;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TestSuiteRunner.d.ts","sourceRoot":"","sources":["../../../src/Runners/TestSuiteRunner.ts"],"names":[],"mappings":"AAAA,OAAO,cAAc,MAAM,6BAA6B,CAAC;AACzD,OAAO,SAAS,MAAM,wBAAwB,CAAC;AAC/C,OAAO,gBAAgB,MAAM,+BAA+B,CAAC;AAC7D,OAAO,QAAQ,MAAM,uBAAuB,CAAC;AAC7C,OAAO,UAAU,MAAM,cAAc,CAAC;AAEtC,MAAM,CAAC,OAAO,OAAO,eAAe;
|
|
1
|
+
{"version":3,"file":"TestSuiteRunner.d.ts","sourceRoot":"","sources":["../../../src/Runners/TestSuiteRunner.ts"],"names":[],"mappings":"AAAA,OAAO,cAAc,MAAM,6BAA6B,CAAC;AACzD,OAAO,SAAS,MAAM,wBAAwB,CAAC;AAC/C,OAAO,gBAAgB,MAAM,+BAA+B,CAAC;AAC7D,OAAO,QAAQ,MAAM,uBAAuB,CAAC;AAC7C,OAAO,UAAU,MAAM,cAAc,CAAC;AAEtC,MAAM,CAAC,OAAO,OAAO,eAAe;IAEvB,OAAO,CAAC,QAAQ,CAAC,MAAM;IAAc,OAAO,CAAC,QAAQ,CAAC,SAAS;gBAA9C,MAAM,EAAE,UAAU,EAAmB,SAAS,EAAE,aAAa,CAAC,cAAc,CAAC;IAGpG,QAAQ,CAAC,KAAK,EAAE,SAAS;IAQzB,QAAQ,CAAC,KAAK,EAAE,SAAS,EAAE,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,QAAQ,CAAC;CAehE"}
|
|
@@ -31,7 +31,7 @@ class TestSuiteRunner {
|
|
|
31
31
|
return __awaiter(this, void 0, void 0, function* () {
|
|
32
32
|
const results = new TestSuiteResults_1.default(suite);
|
|
33
33
|
if (tests === undefined || tests === null || Object.keys(tests).length === 0) {
|
|
34
|
-
yield Promise.all(this.reporters.map(r => r.testIncomplete(suite,
|
|
34
|
+
yield Promise.all(this.reporters.map(r => r.testIncomplete(suite, "(no tests found)")));
|
|
35
35
|
return results;
|
|
36
36
|
}
|
|
37
37
|
const test_names = Object.keys(tests);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TestSuiteRunner.js","sourceRoot":"","sources":["../../../src/Runners/TestSuiteRunner.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AAEA,qFAA6D;AAI7D,MAAqB,eAAe;
|
|
1
|
+
{"version":3,"file":"TestSuiteRunner.js","sourceRoot":"","sources":["../../../src/Runners/TestSuiteRunner.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AAEA,qFAA6D;AAI7D,MAAqB,eAAe;IAEnC,YAA6B,MAAkB,EAAmB,SAAwC;QAA7E,WAAM,GAAN,MAAM,CAAY;QAAmB,cAAS,GAAT,SAAS,CAA+B;IAC1G,CAAC;IAEK,QAAQ,CAAC,KAAgB;;YAC9B,MAAM,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;YAClE,MAAM,KAAK,GAAG,KAAK,CAAC,QAAQ,EAAE,CAAC;YAC/B,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,QAAQ,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;YAClD,MAAM,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,cAAc,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;YAC7E,OAAO,OAAO,CAAC;QAChB,CAAC;KAAA;IAEK,QAAQ,CAAC,KAAgB,EAAE,KAA+B;;YAC/D,MAAM,OAAO,GAAG,IAAI,0BAAgB,CAAC,KAAK,CAAC,CAAC;YAC5C,IAAI,KAAK,KAAK,SAAS,IAAI,KAAK,KAAK,IAAI,IAAI,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,MAAM,KAAK,CAAC,EAAE;gBAC7E,MAAM,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,cAAc,CAAC,KAAK,EAAE,kBAAkB,CAAC,CAAC,CAAC,CAAC;gBACxF,OAAO,OAAO,CAAC;aACf;YAED,MAAM,UAAU,GAAG,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;YACtC,KAAK,MAAM,IAAI,IAAI,UAAU,EAAE;gBAC9B,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC,EAAE,KAAK,CAAC,CAAC;gBACnE,OAAO,CAAC,SAAS,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;aAChC;YAED,OAAO,OAAO,CAAC;QAChB,CAAC;KAAA;CACD;AA5BD,kCA4BC"}
|
package/dist/xunit.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import Test from
|
|
2
|
-
import TestSuite from
|
|
3
|
-
import Assert from
|
|
1
|
+
import Test from "./src/Framework/Test";
|
|
2
|
+
import TestSuite from "./src/Framework/TestSuite";
|
|
3
|
+
import Assert from "./src/Assertions";
|
|
4
4
|
export { Test, TestSuite, Assert };
|
|
5
5
|
//# sourceMappingURL=xunit.d.ts.map
|
package/dist/xunit.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"xunit.d.ts","sourceRoot":"","sources":["../xunit.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,sBAAsB,CAAC;AACxC,OAAO,SAAS,MAAM,2BAA2B,CAAC;AAClD,OAAO,MAAM,MAAM,kBAAkB,CAAC;AAEtC,OAAO,
|
|
1
|
+
{"version":3,"file":"xunit.d.ts","sourceRoot":"","sources":["../xunit.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,sBAAsB,CAAC;AACxC,OAAO,SAAS,MAAM,2BAA2B,CAAC;AAClD,OAAO,MAAM,MAAM,kBAAkB,CAAC;AAEtC,OAAO,EACN,IAAI,EACJ,SAAS,EACT,MAAM,EACN,CAAC"}
|
package/dist/xunit.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"xunit.js","sourceRoot":"","sources":["../xunit.ts"],"names":[],"mappings":";;;;;;AAAA,gEAAwC;
|
|
1
|
+
{"version":3,"file":"xunit.js","sourceRoot":"","sources":["../xunit.ts"],"names":[],"mappings":";;;;;;AAAA,gEAAwC;AAKvC,eALM,cAAI,CAKN;AAJL,0EAAkD;AAKjD,oBALM,mBAAS,CAKN;AAJV,kEAAsC;AAKrC,iBALM,oBAAM,CAKN"}
|
package/icon.svg
CHANGED
|
@@ -1,83 +1,82 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
2
|
<svg
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
id="text2766"><tspan
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
7
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
+
sodipodi:docname="icon.svg"
|
|
10
|
+
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
|
11
|
+
inkscape:export-ydpi="96"
|
|
12
|
+
inkscape:export-xdpi="96"
|
|
13
|
+
inkscape:export-filename="X:\ecoAPM\xunit.ts\docs\assets\icon.png"
|
|
14
|
+
id="svg875"
|
|
15
|
+
version="1.1"
|
|
16
|
+
viewBox="0 0 128 128"
|
|
17
|
+
height="128"
|
|
18
|
+
width="128">
|
|
19
|
+
<defs
|
|
20
|
+
id="defs869"/>
|
|
21
|
+
<sodipodi:namedview
|
|
22
|
+
inkscape:window-maximized="1"
|
|
23
|
+
inkscape:window-y="58"
|
|
24
|
+
inkscape:window-x="1912"
|
|
25
|
+
inkscape:window-height="987"
|
|
26
|
+
inkscape:window-width="1680"
|
|
27
|
+
width="128mm"
|
|
28
|
+
units="px"
|
|
29
|
+
showgrid="false"
|
|
30
|
+
inkscape:document-rotation="0"
|
|
31
|
+
inkscape:current-layer="layer1"
|
|
32
|
+
inkscape:document-units="px"
|
|
33
|
+
inkscape:cy="71.552618"
|
|
34
|
+
inkscape:cx="79.729008"
|
|
35
|
+
inkscape:zoom="3.959798"
|
|
36
|
+
inkscape:pageshadow="2"
|
|
37
|
+
inkscape:pageopacity="0.0"
|
|
38
|
+
borderopacity="1.0"
|
|
39
|
+
bordercolor="#666666"
|
|
40
|
+
pagecolor="#ffffff"
|
|
41
|
+
id="base"/>
|
|
42
|
+
<metadata
|
|
43
|
+
id="metadata872">
|
|
44
|
+
<rdf:RDF>
|
|
45
|
+
<cc:Work
|
|
46
|
+
rdf:about="">
|
|
47
|
+
<dc:format>image/svg+xml</dc:format>
|
|
48
|
+
<dc:type
|
|
49
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
|
50
|
+
<dc:title></dc:title>
|
|
51
|
+
</cc:Work>
|
|
52
|
+
</rdf:RDF>
|
|
53
|
+
</metadata>
|
|
54
|
+
<g
|
|
55
|
+
id="layer1"
|
|
56
|
+
inkscape:groupmode="layer"
|
|
57
|
+
inkscape:label="Layer 1">
|
|
58
|
+
<g
|
|
59
|
+
transform="matrix(-3.7139957,0,0,3.7296926,884.38404,-159.89924)"
|
|
60
|
+
style="font-style:normal;font-weight:normal;font-size:50.8px;line-height:1.25;font-family:sans-serif;fill:#bfbfbf;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
|
61
|
+
id="text2766-0"
|
|
62
|
+
aria-label="🗸">
|
|
63
|
+
<path
|
|
64
|
+
sodipodi:nodetypes="ccsccccc"
|
|
65
|
+
id="path2805"
|
|
66
|
+
style="font-size:50.8px;fill:#bfbfbf;fill-opacity:1;stroke-width:0.264583"
|
|
67
|
+
d="m 231.8494,43.408198 0.74414,1.289843 c -4.84518,3.423047 -9.33483,7.755599 -13.46894,12.997656 -4.13412,5.242057 -7.11895,10.376628 -8.9545,15.403711 l -1.0914,0.719336 c -0.94258,0.611849 -1.75287,1.223698 -2.43086,1.835547 -1.21639,-4.400349 7.20052,-16.248511 12.05508,-21.480859 4.15065,-4.415235 8.53281,-8.003646 13.14648,-10.765234 z"/>
|
|
68
|
+
</g>
|
|
69
|
+
<text
|
|
70
|
+
transform="scale(0.99789345,1.002111)"
|
|
71
|
+
xml:space="preserve"
|
|
72
|
+
style="font-style:normal;font-weight:normal;font-size:189.069px;line-height:1.25;font-family:sans-serif;fill:#538d43;fill-opacity:1;stroke:none;stroke-width:0.984735"
|
|
73
|
+
x="-11.659032"
|
|
74
|
+
y="150.47607"
|
|
75
|
+
id="text2766"><tspan
|
|
77
76
|
sodipodi:role="line"
|
|
78
77
|
id="tspan2764"
|
|
79
78
|
x="-11.659032"
|
|
80
79
|
y="150.47607"
|
|
81
80
|
style="font-size:189.069px;fill:#538d43;fill-opacity:1;stroke-width:0.984735">🗸</tspan></text>
|
|
82
|
-
|
|
81
|
+
</g>
|
|
83
82
|
</svg>
|
package/logo.svg
CHANGED
|
@@ -1,112 +1,112 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
2
|
<svg
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
xml:space="preserve"><tspan
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
7
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
+
inkscape:export-ydpi="96"
|
|
10
|
+
inkscape:export-xdpi="96"
|
|
11
|
+
inkscape:export-filename="X:\ecoAPM\xunit.ts\logo-black.png"
|
|
12
|
+
sodipodi:docname="logo.svg"
|
|
13
|
+
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
|
14
|
+
id="svg8"
|
|
15
|
+
version="1.1"
|
|
16
|
+
viewBox="0 0 400 128"
|
|
17
|
+
height="128"
|
|
18
|
+
width="400">
|
|
19
|
+
<defs
|
|
20
|
+
id="defs2">
|
|
21
|
+
<rect
|
|
22
|
+
id="rect2858"
|
|
23
|
+
height="56"
|
|
24
|
+
width="61.5"
|
|
25
|
+
y="39"
|
|
26
|
+
x="127.5"/>
|
|
27
|
+
<rect
|
|
28
|
+
id="rect2746"
|
|
29
|
+
height="38.364582"
|
|
30
|
+
width="5.0270834"
|
|
31
|
+
y="94.720833"
|
|
32
|
+
x="102.39375"/>
|
|
33
|
+
</defs>
|
|
34
|
+
<sodipodi:namedview
|
|
35
|
+
inkscape:window-maximized="1"
|
|
36
|
+
inkscape:window-y="-8"
|
|
37
|
+
inkscape:window-x="-8"
|
|
38
|
+
inkscape:window-height="1137"
|
|
39
|
+
inkscape:window-width="1920"
|
|
40
|
+
inkscape:pagecheckerboard="false"
|
|
41
|
+
units="px"
|
|
42
|
+
showgrid="false"
|
|
43
|
+
inkscape:document-rotation="0"
|
|
44
|
+
inkscape:current-layer="layer1"
|
|
45
|
+
inkscape:document-units="px"
|
|
46
|
+
inkscape:cy="111.1524"
|
|
47
|
+
inkscape:cx="243.86486"
|
|
48
|
+
inkscape:zoom="2"
|
|
49
|
+
inkscape:pageshadow="2"
|
|
50
|
+
inkscape:pageopacity="0"
|
|
51
|
+
borderopacity="1.0"
|
|
52
|
+
bordercolor="#666666"
|
|
53
|
+
pagecolor="#000000"
|
|
54
|
+
id="base"/>
|
|
55
|
+
<metadata
|
|
56
|
+
id="metadata5">
|
|
57
|
+
<rdf:RDF>
|
|
58
|
+
<cc:Work
|
|
59
|
+
rdf:about="">
|
|
60
|
+
<dc:format>image/svg+xml</dc:format>
|
|
61
|
+
<dc:type
|
|
62
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
|
63
|
+
<dc:title></dc:title>
|
|
64
|
+
</cc:Work>
|
|
65
|
+
</rdf:RDF>
|
|
66
|
+
</metadata>
|
|
67
|
+
<g
|
|
68
|
+
id="layer1"
|
|
69
|
+
inkscape:groupmode="layer"
|
|
70
|
+
inkscape:label="Layer 1">
|
|
71
|
+
<text
|
|
72
|
+
id="text2742"
|
|
73
|
+
y="168.27499"
|
|
74
|
+
x="-11.377083"
|
|
75
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:127px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
|
76
|
+
xml:space="preserve"><tspan
|
|
78
77
|
sodipodi:role="line"
|
|
79
78
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:127px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';stroke-width:0.264583"
|
|
80
79
|
y="168.27499"
|
|
81
80
|
x="-11.377083"
|
|
82
|
-
id="tspan2740"
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
81
|
+
id="tspan2740" />
|
|
82
|
+
<tspan
|
|
83
|
+
id="tspan2754"
|
|
84
|
+
sodipodi:role="line"
|
|
85
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:127px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';stroke-width:0.264583"
|
|
86
|
+
y="327.02499"
|
|
87
|
+
x="-11.377083"/></text>
|
|
88
|
+
<text
|
|
89
|
+
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect2746);fill:#000000;fill-opacity:1;stroke:none;"
|
|
90
|
+
id="text2744"
|
|
91
|
+
xml:space="preserve"/>
|
|
92
|
+
<text
|
|
93
|
+
id="text2752"
|
|
94
|
+
y="26.987499"
|
|
95
|
+
x="35.983334"
|
|
96
|
+
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
|
97
|
+
xml:space="preserve"><tspan
|
|
98
98
|
style="stroke-width:0.264583"
|
|
99
99
|
y="26.987499"
|
|
100
100
|
x="35.983334"
|
|
101
101
|
id="tspan2750"
|
|
102
102
|
sodipodi:role="line" /></text>
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
103
|
+
<text
|
|
104
|
+
transform="scale(0.99994519,1.0000548)"
|
|
105
|
+
id="text2758"
|
|
106
|
+
y="98.652382"
|
|
107
|
+
x="112.43309"
|
|
108
|
+
style="font-style:normal;font-weight:normal;font-size:95.8669px;line-height:0;font-family:sans-serif;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264216"
|
|
109
|
+
xml:space="preserve"><tspan
|
|
110
110
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:95.8669px;line-height:1;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans';fill:#000000;fill-opacity:1;stroke-width:0.264216"
|
|
111
111
|
y="98.652382"
|
|
112
112
|
x="112.43309"
|
|
@@ -114,41 +114,41 @@
|
|
|
114
114
|
sodipodi:role="line"><tspan
|
|
115
115
|
id="tspan3014"
|
|
116
116
|
style="fill:#ffffff;fill-opacity:1">unit</tspan><tspan
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
117
|
+
id="tspan3000"
|
|
118
|
+
style="fill:#808080;fill-opacity:1">.</tspan><tspan
|
|
119
|
+
id="tspan3016"
|
|
120
|
+
style="fill:#ffffff;fill-opacity:1">ts</tspan></tspan></text>
|
|
121
|
+
<text
|
|
122
|
+
style="fill:black;fill-opacity:1;line-height:1.25;stroke:none;font-family:sans-serif;font-style:normal;font-weight:normal;font-size:40px;white-space:pre;shape-inside:url(#rect2858);"
|
|
123
|
+
id="text2856"
|
|
124
|
+
xml:space="preserve"/>
|
|
125
|
+
</g>
|
|
126
|
+
<g
|
|
127
|
+
inkscape:label="Layer 2"
|
|
128
|
+
id="layer2"
|
|
129
|
+
inkscape:groupmode="layer">
|
|
130
|
+
<g
|
|
131
|
+
transform="matrix(-3.7140083,0,0,3.7296903,884.38712,-159.89914)"
|
|
132
|
+
style="font-style:normal;font-weight:normal;font-size:50.8px;line-height:1.25;font-family:sans-serif;fill:#bfbfbf;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
|
133
|
+
id="text2766-0"
|
|
134
|
+
aria-label="🗸">
|
|
135
|
+
<path
|
|
136
|
+
sodipodi:nodetypes="ccsccccc"
|
|
137
|
+
id="path2805"
|
|
138
|
+
style="font-size:50.8px;fill:#bfbfbf;fill-opacity:1;stroke-width:0.264583"
|
|
139
|
+
d="m 231.8494,43.408198 0.74414,1.289843 c -4.84518,3.423047 -9.33483,7.755599 -13.46894,12.997656 -4.13412,5.242057 -7.11895,10.376628 -8.9545,15.403711 l -1.0914,0.719336 c -0.94258,0.611849 -1.75287,1.223698 -2.43086,1.835547 -1.21639,-4.400349 7.20052,-16.248511 12.05508,-21.480859 4.15065,-4.415235 8.53281,-8.003646 13.14648,-10.765234 z"/>
|
|
140
|
+
</g>
|
|
141
|
+
<text
|
|
142
|
+
transform="scale(0.99789547,1.002109)"
|
|
143
|
+
xml:space="preserve"
|
|
144
|
+
style="font-style:normal;font-weight:normal;font-size:189.07px;line-height:1.25;font-family:sans-serif;fill:#538d43;fill-opacity:1;stroke:none;stroke-width:0.984736"
|
|
145
|
+
x="-11.659009"
|
|
146
|
+
y="150.47635"
|
|
147
|
+
id="text2766"><tspan
|
|
148
148
|
sodipodi:role="line"
|
|
149
149
|
id="tspan2764"
|
|
150
150
|
x="-11.659009"
|
|
151
151
|
y="150.47635"
|
|
152
152
|
style="font-size:189.07px;fill:#538d43;fill-opacity:1;stroke-width:0.984736">🗸</tspan></text>
|
|
153
|
-
|
|
153
|
+
</g>
|
|
154
154
|
</svg>
|