Angular - Services and Dependency Injection
In this test code, why does the component fail to use the mock service?
TestBed.configureTestingModule({
declarations: [MyComponent],
providers: [{provide: DataService, useClass: RealDataService}]
});