it('you can extend an all object', () => {
      const mock = Mockery.all<Foo>();
      Mockery.extend(mock).with({ stringFunction: () => 'hola' });
      expect(mock.stringFunction('whatevs')).toBe('hola');
    });