| 
									
										
										
										
											2016-06-23 09:47:54 -07:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							|  |  |  |  * Copyright Google Inc. All Rights Reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | import {Message, id} from '@angular/compiler/src/i18n/message'; | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  | import {beforeEach, ddescribe, describe, expect, iit, inject, it, xdescribe, xit} from '@angular/core/testing/testing_internal'; | 
					
						
							| 
									
										
										
										
											2016-03-14 11:45:14 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | export function main() { | 
					
						
							| 
									
										
										
										
											2016-03-17 20:57:57 -07:00
										 |  |  |   describe('Message', () => { | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |     describe('id', () => { | 
					
						
							|  |  |  |       it('should return a different id for messages with and without the meaning', () => { | 
					
						
							|  |  |  |         let m1 = new Message('content', 'meaning', null); | 
					
						
							|  |  |  |         let m2 = new Message('content', null, null); | 
					
						
							| 
									
										
										
										
											2016-03-14 11:45:14 -07:00
										 |  |  |         expect(id(m1)).toEqual(id(m1)); | 
					
						
							|  |  |  |         expect(id(m1)).not.toEqual(id(m2)); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | } |