;;; phps-mode-test-parser.el --- Tests for parser -*- lexical-binding: t -*- ;; Copyright (C) 2017-2021 Free Software Foundation, Inc. ;; This file is not part of GNU Emacs. ;; This program is free software; you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as ;; published by the Free Software Foundation; either version 2, or (at ;; your option) any later version. ;; This program is distributed in the hope that it will be useful, but ;; WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;; General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with GNU Emacs. If not, see . ;;; Commentary: ;; Run from terminal make test-parser ;;; Code: (defun phps-mode-test-parser() "Run test for lexer." ;; (message "-- Running all tests for parser... --\n") ;; (setq debug-on-error t) ;; (message "\n-- Ran all tests for parser. --") ) (phps-mode-test-parser) (provide 'phps-mode-test-parser) ;;; phps-mode-test-parser.el ends here