Skip to content

Commit 1b753fa

Browse files
committed
testing_environment directory renamed to fixtures (#107)
1 parent e37db2c commit 1b753fa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+4
-5
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"psr-4": {
3838
"ExOrg\\DataCoder\\": [
3939
"tests/unit_tests/",
40-
"tests/testing_environment/classes/"
40+
"tests/fixtures/classes/"
4141
]
4242
}
4343
},
File renamed without changes.
File renamed without changes.

tests/testing_environment/data/created/.gitignore

-1
This file was deleted.

tests/unit_tests/File/FileTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class FileTest extends TestCase
2929
* Relative path of directory with file fixtures
3030
* used in tests.
3131
*/
32-
const FILE_FIXTURES_RELATIVE_PATH = '../../testing_environment/files';
32+
const FILE_FIXTURES_RELATIVE_PATH = '../../fixtures/files';
3333

3434
const FILE_FULLY_QUALIFIED_CLASS_NAME = 'ExOrg\DataCoder\File\File';
3535
const FILE_EXCEPTION_FULLY_QUALIFIED_CLASS_NAME = 'ExOrg\DataCoder\File\FileException';

tests/unit_tests/Fixture/DataFileFixturesHelper.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class DataFileFixturesHelper
2929
* They are inputs and the expected results
3030
* of the encoding/decoding operations.
3131
*/
32-
const FILES_DIRECTORY = '../../testing_environment/data';
32+
const FILES_DIRECTORY = '../../fixtures/data';
3333

3434
/**
3535
* Directory with the files containing encoded data

tests/unit_tests/Fixture/DataFileFixturesHelperTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class DataFileFixturesHelperTest extends TestCase
3434
* They are inputs and the expected results
3535
* of the encoding/decoding operations.
3636
*/
37-
const FILES_DIRECTORY = '../../testing_environment/data';
37+
const FILES_DIRECTORY = '../../fixtures/data';
3838

3939
/**
4040
* Instance of tested class.

0 commit comments

Comments
 (0)