import { Verb } from '../../../../../models/bxml/Verb'; import { StreamParam, StreamParamAttributes } from '../../../../../models/bxml/verbs/StreamParam'; describe('StreamParam', () => { const attributes: StreamParamAttributes = { name: 'initialName', value: 'initialValue' }; const expected = ''; test('should create a StreamParam Verb', () => { const streamParam = new StreamParam(attributes); expect(streamParam).toBeInstanceOf(StreamParam); expect(streamParam).toBeInstanceOf(Verb); expect(streamParam.toBxml()).toBe(expected); }); });