import { AddTests } from '@util'; /* AddTests('LEFTB', [ { type: 'expect', expression: '=LEFTB("hello",3)', expected: 'hel' }, { type: 'expect', expression: '=LEFTB("hello",1)', expected: 'h' }, { type: 'expect', expression: '=LEFTB("hello")', expected: 'h' }, { type: 'expect', expression: '=LEFTB("test",4)', expected: 'test' }, ]); AddTests('LENB', [ { type: 'expect', expression: '=LENB("hello")', expected: 5 }, { type: 'expect', expression: '=LENB("")', expected: 0 }, { type: 'expect', expression: '=LENB("test 123")', expected: 8 }, { type: 'expect', expression: '=LENB("a")', expected: 1 }, ]); AddTests('MIDB', [ { type: 'expect', expression: '=MIDB("Fluid",1,1)', expected: 'F' }, { type: 'expect', expression: '=MIDB("Fluid",3,3)', expected: 'uid' }, { type: 'expect', expression: '=MIDB("hello",2,3)', expected: 'ell' }, { type: 'expect', expression: '=MIDB("test",1,4)', expected: 'test' }, ]); AddTests('RIGHTB', [ { type: 'expect', expression: '=RIGHTB("hello",3)', expected: 'llo' }, { type: 'expect', expression: '=RIGHTB("hello",1)', expected: 'o' }, { type: 'expect', expression: '=RIGHTB("hello")', expected: 'o' }, { type: 'expect', expression: '=RIGHTB("test",4)', expected: 'test' }, ]); */