We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6deac6 commit 3b5bca1Copy full SHA for 3b5bca1
unit-test/coveragetest/coveragetest_sample_lib.c
@@ -166,7 +166,10 @@ void Test_SAMPLE_Function(void)
166
/*
167
* Setup function prior to every test
168
*/
169
-void Sample_UT_Setup(void) { UT_ResetState(0); }
+void Sample_UT_Setup(void)
170
+{
171
+ UT_ResetState(0);
172
+}
173
174
175
* Teardown function after every test
ut-stubs/sample_lib_stubs.c
@@ -71,4 +71,7 @@ int32 SAMPLE_LibInit(void)
71
/* Sample Lib function stub */
72
/* */
73
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
74
-int32 SAMPLE_Function(void) { return UT_DEFAULT_IMPL(SAMPLE_Function); } /* End SAMPLE_Function */
+int32 SAMPLE_Function(void)
75
76
+ return UT_DEFAULT_IMPL(SAMPLE_Function);
77
+} /* End SAMPLE_Function */
0 commit comments