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 AllTests.c Source File

AllTests.c

00001 //- Copyright (c) 2010 James Grenning and Contributed to Unity Project
00002 /* ==========================================
00003     Unity Project - A Test Framework for C
00004     Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
00005     [Released under MIT License. Please refer to license.txt for details]
00006 ========================================== */
00007 
00008 #include "unity_fixture.h"
00009 
00010 static void runAllTests(void)
00011 {
00012     RUN_TEST_GROUP(UnityFixture);
00013     RUN_TEST_GROUP(UnityCommandOptions);
00014     RUN_TEST_GROUP(LeakDetection);
00015     RUN_TEST_GROUP(InternalMalloc);
00016 }
00017 
00018 int main(int argc, const char* argv[])
00019 {
00020     return UnityMain(argc, argv, runAllTests);
00021 }
00022