MVC Project Organization - OCLC-Developer-Network/devconnect2018-idm GitHub Wiki
Model View Controller
- Seperate Code by what it does
- Data handling
- Business logic
- Display
- Makes customization easier
Structure of MVC (streamlined)
- Model directory
- we've created
src
already
- holds our model files
- Views directory
views
- holds our view files
Folders for Testing
- Test directory
- we've created this already
- holds our unit tests
- Feature directory in test directory
- We'll create this later
- holds our automated behavior-driven acceptance tests