From: Eric Ludlam Date: Sat, 20 Aug 2011 17:07:36 +0000 (-0400) Subject: Add header comments and provide. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=812f2597b8ba19140ef90e1a753fef3e27756ee6;p=emacs.git Add header comments and provide. --- diff --git a/test/manual/cedet/cedet/semantic/lex-spp-utest.el b/test/manual/cedet/cedet/semantic/lex-spp-utest.el new file mode 100644 index 00000000000..9721d6a4bf5 --- /dev/null +++ b/test/manual/cedet/cedet/semantic/lex-spp-utest.el @@ -0,0 +1,48 @@ +;;; lex-spp-utest.el --- +;; +;; Copyright (C) 2011 Eric M. Ludlam +;; +;; Author: Eric M. Ludlam +;; +;; 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 3 of the +;; License, 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 this program. If not, see http://www.gnu.org/licenses/. + + +;;; Commentary: +;; +;; + +;;; Code: + +(defun semantic-lex-spp-write-test () + "Test the semantic tag writer against the current buffer." + (interactive) + (with-output-to-temp-buffer "*SPP Write Test*" + (semantic-lex-spp-table-write-slot-value + (semantic-lex-spp-save-table)))) + +(defun semantic-lex-spp-write-utest () + "Unit test using the test spp file to test the slot write fcn." + (interactive) + (let* ((sem (locate-library "semantic/lex-spp.el")) + (dir (file-name-directory sem))) + (save-excursion + (set-buffer (find-file-noselect + (expand-file-name "tests/testsppreplace.c" + dir))) + (semantic-lex-spp-write-test)))) + + +(provide 'cedet/semantic/lex-spp-utest) + +;;; lex-spp-utest.el ends here