import { Verb } from '../../../../../models/bxml/Verb'; import { StopGather } from '../../../../../models/bxml/verbs/StopGather'; describe('StopGather', () => { const expected = ''; test('should create a StopGather Verb', () => { const stopGather = new StopGather(); expect(stopGather).toBeInstanceOf(StopGather); expect(stopGather).toBeInstanceOf(Verb); expect(stopGather.toBxml()).toBe(expected); }); });