Generally, there's a thought that you should not test the framework itself because many tests inside Laravel already cover its features.
However, you may test some features to ensure they work correctly with your data set. A typical example is testing Eloquent Observers or Accessors/Mutators, checking the data before and after them. It could be Unit or Feature tests.
For example, you have an Attribute for...