Изучаю ларавель (ну и пробую что-то научиться тестировать)
В нем есть папка tests в которой еще 2 папки: Feature и Unit
В чем разница между этими тестами? Что где нужно тестировать?
В документации написано:
By default, your application's tests directory contains two directories: Feature and Unit. Unit tests are tests that focus on a very small, isolated portion of your code. In fact, most unit tests probably focus on a single method. Feature tests may test a larger portion of your code, including how several objects interact with each other or even a full HTTP request to a JSON endpoint.
Но что понимается под "маленькими кусками кода" я не особо понимаю.