Simulated product dispenser

Dependencies:   HTS221

Fork of mbed-cloud-workshop-connect-HTS221 by Jim Carver

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers TestProductionCode2.c Source File

TestProductionCode2.c

00001 
00002 #include "ProductionCode2.h"
00003 #include "unity.h"
00004 
00005 /* These should be ignored because they are commented out in various ways:
00006 #include "whatever.h" 
00007 */
00008 //#include "somethingelse.h"
00009 
00010 void setUp(void)
00011 {
00012 }
00013 
00014 void tearDown(void)
00015 {
00016 }
00017 
00018 void test_IgnoredTest(void)
00019 {
00020     TEST_IGNORE_MESSAGE("This Test Was Ignored On Purpose");
00021 }
00022 
00023 void test_AnotherIgnoredTest(void)
00024 {
00025     TEST_IGNORE_MESSAGE("These Can Be Useful For Leaving Yourself Notes On What You Need To Do Yet");
00026 }
00027 
00028 void test_ThisFunctionHasNotBeenTested_NeedsToBeImplemented(void)
00029 {
00030     TEST_IGNORE(); //Like This
00031 }