次のテスト例では、元のプロバイダー名は APIEndpointProvider ですが、インジェクションとサービスのインスタンス化では、アンダースコアでラップしてインジェクトする必要があるようです。何故ですか?
'use strict';
describe('Provider: APIEndpointProvider', function () {
beforeEach(module('myApp.providers'));
var APIEndpointProvider;
beforeEach(inject(function(_APIEndpointProvider_) {
APIEndpointProvider = _APIEndpointProvider_;
}));
it('should do something', function () {
expect(!!APIEndpointProvider).toBe(true);
});
});
より良い説明が欠けている慣習は何ですか?