diff options
| author | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-11-29 13:55:26 +0900 | 
|---|---|---|
| committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-12-09 23:09:34 +0900 | 
| commit | c523d75472a16dc58e2e4c4ee51eb15efe6c11f9 (patch) | |
| tree | 3aa8f0c1175280d85a959585f2b0b66fecb17808 /test/content/operators/impls/FindNextOperator.test.ts | |
| parent | 36c28a538955c0cd9d94c210372337d7a5c2a01b (diff) | |
Add operators' test
Diffstat (limited to 'test/content/operators/impls/FindNextOperator.test.ts')
| -rw-r--r-- | test/content/operators/impls/FindNextOperator.test.ts | 17 | 
1 files changed, 17 insertions, 0 deletions
diff --git a/test/content/operators/impls/FindNextOperator.test.ts b/test/content/operators/impls/FindNextOperator.test.ts new file mode 100644 index 0000000..d93d45e --- /dev/null +++ b/test/content/operators/impls/FindNextOperator.test.ts @@ -0,0 +1,17 @@ +import sinon from "sinon"; +import FindNextOperator from "../../../../src/content/operators/impls/FindNextOperator"; +import MockFindMasterClient from "../../mock/MockFindMasterClient"; + +describe("FindNextOperator", () => { +  describe("#run", () => { +    it("find next keyword", async () => { +      const client = new MockFindMasterClient(); +      const mock = sinon.mock(client).expects("findNext").exactly(3); +      const sut = new FindNextOperator(client, 3); + +      await sut.run(); + +      mock.verify(); +    }); +  }); +});  | 
