A Reader Question Recently I came across attempts to verify framework-based behavior. This is what I saw: We introduce a framework like JPA Query Builder, RestEasy, or Spark. Then we get two kinds of code: the code which uses a sequence of framework-specific calls (like run-time JPA query building) the code which uses annotations to configure system behavior (like JAX-RS annotations for ReST paths) Now I start seeing two kinds of unit tests. The first kind relates to verifying framework calls...