it('should create a title string that combines the code with the title', () => {
     const output = defaultNameTemplate('1234', 'Banana');
     expect(output).toEqual('1234 - Banana');
 });
 it('should just return the title when there is no code', () => {
     const output = defaultNameTemplate('', 'Banana');
     expect(output).toEqual('Banana');
 });