(String filename)
| 531 | } |
| 532 | |
| 533 | @VisibleForTesting |
| 534 | static String getClassName(String filename) { |
| 535 | int classNameEnd = filename.length() - CLASS_FILE_NAME_EXTENSION.length(); |
| 536 | return filename.substring(0, classNameEnd).replace('/', '.'); |
| 537 | } |
| 538 | } |
no test coverage detected