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 #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 }