(require 'company-tests) (require 'company-clang) (ert-deftest company-clang-objc-templatify () (with-temp-buffer (let ((text "createBookWithTitle:andAuthor:")) (insert text) (company-clang-objc-templatify text) (should (equal "createBookWithTitle:arg0 andAuthor:arg1" (buffer-string))) (should (looking-at "arg0")) (should (null (overlay-get (company-template-field-at) 'display))))))