本文整理匯總了TypeScript中app/admin/metrics/metrics.component.JhiMetricsMonitoringComponent類的典型用法代碼示例。如果您正苦於以下問題:TypeScript component.JhiMetricsMonitoringComponent類的具體用法?TypeScript component.JhiMetricsMonitoringComponent怎麽用?TypeScript component.JhiMetricsMonitoringComponent使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了component.JhiMetricsMonitoringComponent類的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: describe
describe('JhiMetricsMonitoringComponent', () => {
let comp: JhiMetricsMonitoringComponent;
let fixture: ComponentFixture<JhiMetricsMonitoringComponent>;
let service: JhiMetricsService;
beforeEach(
async(() => {
TestBed.configureTestingModule({
imports: [GatewayTestModule],
declarations: [JhiMetricsMonitoringComponent]
})
.overrideTemplate(JhiMetricsMonitoringComponent, '')
.compileComponents();
})
);
beforeEach(() => {
fixture = TestBed.createComponent(JhiMetricsMonitoringComponent);
comp = fixture.componentInstance;
service = fixture.debugElement.injector.get(JhiMetricsService);
});
describe('refresh', () => {
it('should call refresh on init', () => {
// GIVEN
const response = {
timers: {
service: 'test',
unrelatedKey: 'test'
},
gauges: {
'jcache.statistics': {
value: 2
},
unrelatedKey: 'test'
}
};
spyOn(service, 'getMetrics').and.returnValue(of(response));
// WHEN
comp.ngOnInit();
// THEN
expect(service.getMetrics).toHaveBeenCalled();
expect(comp.servicesStats).toEqual({ service: 'test' });
expect(comp.cachesStats).toEqual({ jcache: { name: 17, value: 2 } });
});
});
describe('isNan', () => {
it('should return if a variable is NaN', () => {
expect(comp.filterNaN(1)).toBe(1);
expect(comp.filterNaN('test')).toBe(0);
});
});
});
示例2: describe
describe('JhiMetricsMonitoringComponent', () => {
let comp: JhiMetricsMonitoringComponent;
let fixture: ComponentFixture<JhiMetricsMonitoringComponent>;
let service: JhiMetricsService;
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [JhipsterSampleApplicationTestModule],
declarations: [JhiMetricsMonitoringComponent]
})
.overrideTemplate(JhiMetricsMonitoringComponent, '')
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(JhiMetricsMonitoringComponent);
comp = fixture.componentInstance;
service = fixture.debugElement.injector.get(JhiMetricsService);
});
describe('refresh', () => {
it('should call refresh on init', () => {
// GIVEN
const response = {
timers: {
service: 'test',
unrelatedKey: 'test'
},
gauges: {
'jcache.statistics': {
value: 2
},
unrelatedKey: 'test'
}
};
spyOn(service, 'getMetrics').and.returnValue(of(response));
// WHEN
comp.ngOnInit();
// THEN
expect(service.getMetrics).toHaveBeenCalled();
});
});
});
示例3: it
it('should call refresh on init', () => {
// GIVEN
const response = {
timers: {
service: 'test',
unrelatedKey: 'test'
},
gauges: {
'jcache.statistics': {
value: 2
},
unrelatedKey: 'test'
}
};
spyOn(service, 'getMetrics').and.returnValue(of(response));
// WHEN
comp.ngOnInit();
// THEN
expect(service.getMetrics).toHaveBeenCalled();
});
示例4: it
it('should return if a variable is NaN', () => {
expect(comp.filterNaN(1)).toBe(1);
expect(comp.filterNaN('test')).toBe(0);
});