test12.spec.js 591 B

12345678910111213141516171819202122232425
  1. import Lexers from './../grammar/';
  2. import {
  3. IVProgParser
  4. } from './../js/ast/ivprogParser';
  5. import {
  6. SyntaxError
  7. } from './../js/ast/SyntaxError';
  8. describe('SwitchCase command', () => {
  9. let input = `funcao inteiro test(real i) {
  10. escolha (i) {
  11. caso 1:
  12. retorne 0
  13. caso contrario:
  14. retorne 4
  15. }
  16. }`;
  17. const lexer = Lexers['pt_br'];
  18. it(`should not result in SyntaxError`, () => {
  19. const as = new IVProgParser(input, lexer);
  20. const fun = as.parseFunction.bind(as);
  21. expect(fun).not.toThrow();
  22. });
  23. });