1/* Copyright (c) 2010 James Grenning and Contributed to Unity Project 2 * ========================================== 3 * Unity Project - A Test Framework for C 4 * Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams 5 * [Released under MIT License. Please refer to license.txt for details] 6 * ========================================== */ 7 8#include "unity_fixture.h" 9 10static void runAllTests(void) 11{ 12 RUN_TEST_GROUP(UnityFixture); 13 RUN_TEST_GROUP(UnityCommandOptions); 14 RUN_TEST_GROUP(LeakDetection); 15 RUN_TEST_GROUP(InternalMalloc); 16} 17 18int main(int argc, const char* argv[]) 19{ 20 return UnityMain(argc, argv, runAllTests); 21} 22 23