TestSmell opened a new issue, #1476: URL: https://github.com/apache/cordova-android/issues/1476
Hi! We notice that there is a test smell in your code organization. Based on our analysis of the answers in relevant Stack Overflow posts, the best practice for code organization of a project needs to comply with two conventions: 1. separate test code with production code 2. use a parallel package structure to organize production and test code, like a maven structure In your project, you follow the first conversion, i.e., you are not mixing test code with the production-code-under-test since you place all your test code in the ''test'' folder, but you are not using a more clear folder structure to organize the relationships between test code and production code. It is hard for you to quickly find the corresponding test files of a production code fragment after a long time, increasing your maintenance cost. Thus, we sincerely suggest that you can re-organize your test code in a proper folder structure. :-D -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
