https://github.com/stan-dev/stan
Raw File
Tip revision: 46cf3c7046c540e866ba0052a0decd2b340cc8ef authored by Bob Carpenter on 25 October 2017, 18:34:13 UTC
Merge branch 'develop' of https://github.com/stan-dev/stan into feature/2370-var-decls-from-model
Tip revision: 46cf3c7
compile_standalone_functions_test.cpp
#include <gtest/gtest.h>

TEST(lang,compile_standalone_functions) {
  SUCCEED() 
    << "Standalone function compilation done through makefile dependencies." 
    << std::endl
    << "Should have compiled: "
    << "src/test/test-models/good-standalone-functions/*.stanfuncs";
}
back to top