J'ai utilisé dans mon code comme.
return $provide.decorator('aservice', function($delegate) {
$delegate.addFn = jasmine.createSpy().andReturn(true);
return $delegate;
});
Dans ce que font createSpy? puis-je changer les appels createSpy en appels createspyobj.
En utilisant createSpy, nous pouvons créer une simulation de fonction/méthode. Createspyobj peut faire des simulations de fonctions multiples. Ai-je raison?
Quelle serait la différence.
jasmine.createSpy
peut être utilisé lorsqu'il n'y a aucune fonction à espionner. Il suivra les appels et les arguments comme un spyOn
mais il n'y a pas d'implémentation.
jasmine.createSpyObj
est utilisé pour créer une maquette qui espionnera une ou plusieurs méthodes. Il renvoie un objet qui a une propriété pour chaque chaîne qui est un espion.
Si vous souhaitez créer une maquette, vous devez utiliser jasmine.createSpyObj
. Consultez les exemples ci-dessous.
De la documentation Jasmine http://jasmine.github.io/2.0/introduction.html ...
createSpy:
describe("A spy, when created manually", function() {
var whatAmI;
beforeEach(function() {
whatAmI = jasmine.createSpy('whatAmI');
whatAmI("I", "am", "a", "spy");
});
it("is named, which helps in error reporting", function() {
expect(whatAmI.and.identity()).toEqual('whatAmI');
});
it("tracks that the spy was called", function() {
expect(whatAmI).toHaveBeenCalled();
});
it("tracks its number of calls", function() {
expect(whatAmI.calls.count()).toEqual(1);
});
it("tracks all the arguments of its calls", function() {
expect(whatAmI).toHaveBeenCalledWith("I", "am", "a", "spy");
});
it("allows access to the most recent call", function() {
expect(whatAmI.calls.mostRecent().args[0]).toEqual("I");
});
});
createSpyObj:
describe("Multiple spies, when created manually", function() {
var tape;
beforeEach(function() {
tape = jasmine.createSpyObj('tape', ['play', 'pause', 'stop', 'rewind']);
tape.play();
tape.pause();
tape.rewind(0);
});
it("creates spies for each requested function", function() {
expect(tape.play).toBeDefined();
expect(tape.pause).toBeDefined();
expect(tape.stop).toBeDefined();
expect(tape.rewind).toBeDefined();
});
it("tracks that the spies were called", function() {
expect(tape.play).toHaveBeenCalled();
expect(tape.pause).toHaveBeenCalled();
expect(tape.rewind).toHaveBeenCalled();
expect(tape.stop).not.toHaveBeenCalled();
});
it("tracks all the arguments of its calls", function() {
expect(tape.rewind).toHaveBeenCalledWith(0);
});
});