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_ciTEST_GROUP_RUNNER(UnityFixture) 1135375f98Sopenharmony_ci{ 1235375f98Sopenharmony_ci RUN_TEST_CASE(UnityFixture, PointerSetting); 1335375f98Sopenharmony_ci RUN_TEST_CASE(UnityFixture, PointerSet); 1435375f98Sopenharmony_ci RUN_TEST_CASE(UnityFixture, FreeNULLSafety); 1535375f98Sopenharmony_ci RUN_TEST_CASE(UnityFixture, ConcludeTestIncrementsFailCount); 1635375f98Sopenharmony_ci} 1735375f98Sopenharmony_ci 1835375f98Sopenharmony_ciTEST_GROUP_RUNNER(UnityCommandOptions) 1935375f98Sopenharmony_ci{ 2035375f98Sopenharmony_ci RUN_TEST_CASE(UnityCommandOptions, DefaultOptions); 2135375f98Sopenharmony_ci RUN_TEST_CASE(UnityCommandOptions, OptionVerbose); 2235375f98Sopenharmony_ci RUN_TEST_CASE(UnityCommandOptions, OptionSelectTestByGroup); 2335375f98Sopenharmony_ci RUN_TEST_CASE(UnityCommandOptions, OptionSelectTestByName); 2435375f98Sopenharmony_ci RUN_TEST_CASE(UnityCommandOptions, OptionSelectRepeatTestsDefaultCount); 2535375f98Sopenharmony_ci RUN_TEST_CASE(UnityCommandOptions, OptionSelectRepeatTestsSpecificCount); 2635375f98Sopenharmony_ci RUN_TEST_CASE(UnityCommandOptions, MultipleOptions); 2735375f98Sopenharmony_ci RUN_TEST_CASE(UnityCommandOptions, MultipleOptionsDashRNotLastAndNoValueSpecified); 2835375f98Sopenharmony_ci RUN_TEST_CASE(UnityCommandOptions, UnknownCommandIsIgnored); 2935375f98Sopenharmony_ci RUN_TEST_CASE(UnityCommandOptions, GroupOrNameFilterWithoutStringFails); 3035375f98Sopenharmony_ci RUN_TEST_CASE(UnityCommandOptions, GroupFilterReallyFilters); 3135375f98Sopenharmony_ci RUN_TEST_CASE(UnityCommandOptions, TestShouldBeIgnored); 3235375f98Sopenharmony_ci} 33