We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tests related to the output of the IFileExplorer::explore() test for specific ordering returned by File.list() not guaranteed by the java API.
IFileExplorer::explore()
File.list()
ApplicationTest require File objects to have specific getPath() value regardless of correctness.
ApplicationTest
File
getPath()
./workspace/quotes ./workspace/quotes/A ./workspace/quotes/A/B ./workspace/quotes/A/C ./workspace/quotes/A/C/D ./workspace/quotes/A/C/D/file1.txt ./workspace/quotes/A/C/D/file2.txt ./workspace/quotes/A/C/file1.txt ./workspace/quotes/A/file1.txt ./workspace/quotes/A/file2.txt
./workspace/quotes ./workspace/quotes/A ./workspace/quotes/A/file1.txt ./workspace/quotes/A/file2.txt ./workspace/quotes/A/B ./workspace/quotes/A/C ./workspace/quotes/A/C/file1.txt ./workspace/quotes/A/C/D ./workspace/quotes/A/C/D/file1.txt ./workspace/quotes/A/C/D/file2.txt
The text was updated successfully, but these errors were encountered:
Thank you very much for the feedback. Will be helpful for next year.
Sorry, something went wrong.
No branches or pull requests
Tests related to the output of the
IFileExplorer::explore()
test for specific ordering returned byFile.list()
not guaranteed by the java API.ApplicationTest
requireFile
objects to have specificgetPath()
value regardless of correctness.Sample Output
./workspace/quotes
./workspace/quotes/A
./workspace/quotes/A/B
./workspace/quotes/A/C
./workspace/quotes/A/C/D
./workspace/quotes/A/C/D/file1.txt
./workspace/quotes/A/C/D/file2.txt
./workspace/quotes/A/C/file1.txt
./workspace/quotes/A/file1.txt
./workspace/quotes/A/file2.txt
Expected Output
./workspace/quotes
./workspace/quotes/A
./workspace/quotes/A/file1.txt
./workspace/quotes/A/file2.txt
./workspace/quotes/A/B
./workspace/quotes/A/C
./workspace/quotes/A/C/file1.txt
./workspace/quotes/A/C/D
./workspace/quotes/A/C/D/file1.txt
./workspace/quotes/A/C/D/file2.txt
The text was updated successfully, but these errors were encountered: