| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | import {ChangeDetectorRef} from '@angular/core/src/change_detection/change_detection'; | 
					
						
							|  |  |  | import {ElementRef} from '@angular/core'; | 
					
						
							|  |  |  | import {DomAdapter} from '@angular/platform-browser/src/dom/dom_adapter'; | 
					
						
							|  |  |  | import {SpyObject} from '@angular/core/testing/testing_internal'; | 
					
						
							| 
									
										
										
										
											2015-08-26 11:41:41 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-06 14:13:44 -08:00
										 |  |  | export class SpyChangeDetectorRef extends SpyObject { | 
					
						
							| 
									
										
										
										
											2016-04-14 14:52:35 -07:00
										 |  |  |   constructor() { | 
					
						
							|  |  |  |     super(ChangeDetectorRef); | 
					
						
							|  |  |  |     this.spy('detectChanges'); | 
					
						
							|  |  |  |     this.spy('checkNoChanges'); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2015-08-26 11:41:41 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | export class SpyIterableDifferFactory extends SpyObject {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | export class SpyElementRef extends SpyObject { | 
					
						
							|  |  |  |   constructor() { super(ElementRef); } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | export class SpyDomAdapter extends SpyObject { | 
					
						
							|  |  |  |   constructor() { super(DomAdapter); } | 
					
						
							| 
									
										
										
										
											2015-09-02 15:07:31 -07:00
										 |  |  | } |