Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Chris Müller
cherry
Commits
82eafe6d
Commit
82eafe6d
authored
Jul 07, 2013
by
Chris Müller
Browse files
add skeleton for runtime unittests
parent
0fe0d9dc
Changes
2
Hide whitespace changes
Inline
Side-by-side
test/CMakeLists.txt
View file @
82eafe6d
set
(
TEST_SOURCES
lex.c
runtime.c
main.c
)
add_executable
(
cherry-testsuite
${
TEST_SOURCES
}
)
...
...
test/runtime.c
0 → 100644
View file @
82eafe6d
/*
* Cherry programming language
* Copyright (C) 2013 Christoph Mueller
*
* 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/>.
*/
#include
<crystal/unittest.h>
#include
<cherry/runtime.h>
static
void
test_symbollist
(
const_pointer
data
)
{
}
void
test_suite_runtime
()
{
cry_unittest_run
(
"org.cherry.runtime/symbollist"
,
test_symbollist
,
0
,
100
);
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment