public void testSupplierIsSerializable() throws Exception {
   serialize(scope.apply(() -> "Ni"));
 }
 @Test(expectedExceptions = NotSerializableException.class)
 public void testDelegateScopeIsNotSerializable() throws Exception {
   serialize(delegateScope);
 }