Consolidate test files following naming conventions #11
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR consolidates test files to follow the established naming conventions without changing any code - only rearranging files for better organization.
Naming Convention Applied
Following the documented naming scheme:
scale_olm_<package>_<ClassName>_test.pyfor classes with significant functionalityscale_olm_<package>_test.pyfor free functions and small classesFiles Consolidated
Core Module
core_advanced_test.py+core_fuzzy_test.py→scale_olm_core_test.pyCompositionManager_test.py,ScaleRunner_test.py(heavy classes)Check Module
check_advanced_test.py+check_enhanced_test.py+check_optimized_test.py→scale_olm_check_test.pyAssemble Module
assemble_advanced_test.py+assemble_enhanced_test.py→scale_olm_assemble_test.pyGenerate Module
generate_states_test.py→scale_olm_generate_test.pyInternal Module
internal_advanced_test.py→scale_olm_internal_test.pyKept Separate (Good Size/Focus)
scale_olm_cli_test.py(25 test items)scale_olm_run_test.py(19 test items)scale_olm_report_test.py(18 test items)scale_olm_collection_test.py(1 test item)Verification Performed
Content Integrity
Functional Integrity
Systematic Process
testing_backup/Benefits
Files Changed
core_advanced_test.py→core_test.py)This refactoring improves test organization while maintaining 100% backward compatibility and test coverage.