| 
									
										
										
										
											2019-12-15 21:09:02 -08:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							| 
									
										
										
										
											2020-05-19 12:08:49 -07:00
										 |  |  |  * Copyright Google LLC All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2019-12-15 21:09:02 -08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Use of this source code is governed by an MIT-style license that can be | 
					
						
							|  |  |  |  * found in the LICENSE file at https://angular.io/license
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | import {concatStringsWithSpace} from '@angular/core/src/util/stringify'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | describe('stringify', () => { | 
					
						
							|  |  |  |   describe('concatStringsWithSpace', () => { | 
					
						
							|  |  |  |     it('should concat with null', () => { | 
					
						
							|  |  |  |       expect(concatStringsWithSpace(null, null)).toEqual(''); | 
					
						
							|  |  |  |       expect(concatStringsWithSpace('a', null)).toEqual('a'); | 
					
						
							|  |  |  |       expect(concatStringsWithSpace(null, 'b')).toEqual('b'); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should concat when empty', () => { | 
					
						
							|  |  |  |       expect(concatStringsWithSpace('', '')).toEqual(''); | 
					
						
							|  |  |  |       expect(concatStringsWithSpace('a', '')).toEqual('a'); | 
					
						
							|  |  |  |       expect(concatStringsWithSpace('', 'b')).toEqual('b'); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-13 16:40:21 -07:00
										 |  |  |     it('should concat when not empty', () => { | 
					
						
							|  |  |  |       expect(concatStringsWithSpace('before', 'after')).toEqual('before after'); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2019-12-15 21:09:02 -08:00
										 |  |  |   }); | 
					
						
							|  |  |  | }); |