@@ -8,6 +8,14 @@ namespace SimdJsonSharp.Tests
8
8
{
9
9
public class MinifierTests
10
10
{
11
+ private string testDataDir ;
12
+
13
+ public MinifierTests ( )
14
+ {
15
+ string currentDir = Path . GetDirectoryName ( Assembly . GetExecutingAssembly ( ) . Location ) ;
16
+ testDataDir = Path . Join ( Directory . GetParent ( currentDir ) . Parent . Parent . Parent . FullName , "jsonexamples" ) ;
17
+ }
18
+
11
19
//[Fact]
12
20
public void ValidateMinifier ( )
13
21
{
@@ -24,9 +32,6 @@ public void ValidateMinifier()
24
32
[ Fact ]
25
33
public unsafe void ValidateMinimizedJson ( )
26
34
{
27
- string currentDir = Path . GetDirectoryName ( Assembly . GetExecutingAssembly ( ) . Location ) ;
28
- string testDataDir = Path . Combine ( currentDir , @"../../../../jsonexamples" ) ;
29
-
30
35
string [ ] files = Directory . GetFiles ( testDataDir , "*.json" , SearchOption . AllDirectories ) ;
31
36
// 20 files, ~15Mb of JSON
32
37
Assert . NotEmpty ( files ) ;
@@ -46,9 +51,6 @@ public unsafe void ValidateMinimizedJson()
46
51
[ Fact ]
47
52
public unsafe void ValidateMinimizedJsonN ( )
48
53
{
49
- string currentDir = Path . GetDirectoryName ( Assembly . GetExecutingAssembly ( ) . Location ) ;
50
- string testDataDir = Path . Combine ( currentDir , @"../../../../jsonexamples" ) ;
51
-
52
54
string [ ] files = Directory . GetFiles ( testDataDir , "*.json" , SearchOption . AllDirectories ) ;
53
55
// 20 files, ~15Mb of JSON
54
56
Assert . NotEmpty ( files ) ;
0 commit comments