135375f98Sopenharmony_ci/* Copyright (c) 2010 James Grenning and Contributed to Unity Project
235375f98Sopenharmony_ci * ==========================================
335375f98Sopenharmony_ci *  Unity Project - A Test Framework for C
435375f98Sopenharmony_ci *  Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
535375f98Sopenharmony_ci *  [Released under MIT License. Please refer to license.txt for details]
635375f98Sopenharmony_ci * ========================================== */
735375f98Sopenharmony_ci
835375f98Sopenharmony_ci#include "unity_fixture.h"
935375f98Sopenharmony_ci
1035375f98Sopenharmony_cistatic void runAllTests(void)
1135375f98Sopenharmony_ci{
1235375f98Sopenharmony_ci    RUN_TEST_GROUP(UnityFixture);
1335375f98Sopenharmony_ci    RUN_TEST_GROUP(UnityCommandOptions);
1435375f98Sopenharmony_ci}
1535375f98Sopenharmony_ci
1635375f98Sopenharmony_ciint main(int argc, const char* argv[])
1735375f98Sopenharmony_ci{
1835375f98Sopenharmony_ci    return UnityMain(argc, argv, runAllTests);
1935375f98Sopenharmony_ci}
2035375f98Sopenharmony_ci
21