| 1 | public interface Observable { |
| 2 | void addObserver(NetflixUser user); |
| 3 | |
| 4 | void deleteObserver(NetflixUser user); |
| 5 | |
| 6 | void notifyMovie(String content); |
| 7 | |
| 8 | void notifyAnimation(String content); |
| 9 | } |
nothing calls this directly
no outgoing calls
no test coverage detected