public void testGetIsDelegated() {
    Factory<String> factory = () -> "Ni";

    scope.get(factory);

    verify(delegateScope).get(factory);
  }