Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: FXAS21002 FXOS8700Q
TestProductionCode2.c
00001 #include "ProductionCode2.h" 00002 #include "unity.h" 00003 #include "unity_fixture.h" 00004 00005 TEST_GROUP(ProductionCode2); 00006 00007 /* These should be ignored because they are commented out in various ways: 00008 #include "whatever.h" 00009 */ 00010 //#include "somethingelse.h" 00011 00012 TEST_SETUP(ProductionCode2) 00013 { 00014 } 00015 00016 TEST_TEAR_DOWN(ProductionCode2) 00017 { 00018 } 00019 00020 TEST(ProductionCode2, IgnoredTest) 00021 { 00022 TEST_IGNORE_MESSAGE("This Test Was Ignored On Purpose"); 00023 } 00024 00025 TEST(ProductionCode2, AnotherIgnoredTest) 00026 { 00027 TEST_IGNORE_MESSAGE("These Can Be Useful For Leaving Yourself Notes On What You Need To Do Yet"); 00028 } 00029 00030 TEST(ProductionCode2, ThisFunctionHasNotBeenTested_NeedsToBeImplemented) 00031 { 00032 TEST_IGNORE(); //Like This 00033 }
Generated on Tue Jul 12 2022 20:21:03 by
