This test method has some key differences from the previous ones:
when(): Since Mockito’s given() operator is just a synonym, it’s easier to use the same when() operator everywhere.
This test invokes the delete() operation of VideoService.
Verify(): Because the behavior of the service is more complex, canned data won’t work. Instead, we must switch to verifying the methods invoked inside the service.