* Main entry point * * @param[in] argc Number of command line arguments * @param[in] argv Command line arguments */
| 84 | * @param[in] argv Command line arguments |
| 85 | */ |
| 86 | extern int main(int argc, char **argv) |
| 87 | { |
| 88 | UTIL_NOT_USED(argc); |
| 89 | UTIL_NOT_USED(argv); |
| 90 | |
| 91 | UNITY_BEGIN(); |
| 92 | |
| 93 | RUN_TEST(testBitmapWidget); |
| 94 | |
| 95 | return UNITY_END(); |
| 96 | } |
| 97 | |
| 98 | /** |
| 99 | * Setup a test. This function will be called before every test by unity. |
nothing calls this directly
no outgoing calls
no test coverage detected