1. 01 3月, 2016 2 次提交
  2. 27 2月, 2016 1 次提交
  3. 26 2月, 2016 2 次提交
    • J
      Clean up Ignore Test function in Fixture · f8d5f0ee
      jsalling 提交于
       By removing the call to the Conclude function the code is simplified
        and doesn't depend on global state updates. Tests that are ignored
        after the testBody is called still output the right EOL.
      f8d5f0ee
    • J
      Delete function call syntax from Spy detect macros · f55bed38
      jsalling 提交于
       This fixes #168. See that github.com issue for more discussion.
       Allows the tests to build when putchar() is defined as a macro
        with parenthesis around it, as in the ARM embedded gcc compiler.
      f55bed38
  4. 25 2月, 2016 1 次提交
  5. 24 2月, 2016 1 次提交
  6. 18 2月, 2016 2 次提交
  7. 10 2月, 2016 4 次提交
  8. 09 2月, 2016 2 次提交
  9. 06 2月, 2016 2 次提交
  10. 02 2月, 2016 1 次提交
    • J
      Add configuration option UNITY_EXCLUDE_STDLIB_MALLOC to Fixture · 955b2212
      jsalling 提交于
       This feature removes the dependency on malloc/free for constrained
        embedded systems without a heap. It uses a static heap inside
        Unity Fixture. Setting UNITY_INTERNAL_HEAP_SIZE_BYTES sizes the heap.
       Add tests for new option, add targets to makefile for running tests.
       UNITY_FIXTURE_MALLOC for Fixture use only, remove from unity_output_Spy.c.
      955b2212
  11. 01 2月, 2016 2 次提交
  12. 31 1月, 2016 1 次提交
  13. 20 1月, 2016 2 次提交
  14. 16 1月, 2016 1 次提交
  15. 07 1月, 2016 1 次提交
  16. 23 12月, 2015 1 次提交
  17. 22 12月, 2015 1 次提交
  18. 19 12月, 2015 1 次提交
  19. 17 12月, 2015 1 次提交
  20. 16 12月, 2015 3 次提交
  21. 08 12月, 2015 1 次提交
  22. 24 11月, 2015 2 次提交
  23. 15 10月, 2015 1 次提交
    • J
      MISRA rule 19.10: parentheses around macro params · 1273112a
      Jeremy Hannon 提交于
      Added parentheses around all macro parameters to resolve MISRA 2004
      rule 19.10, "in the definition of a function-like macro, each instance
      of a parameter shall be enclosed in parenthesis" as tested with the
      IAR EW for 8051 compiler, version 9.20.2.
      
      The only questionable change is in "unity_fixture.h" where the nested
      macro DECLARE_TEST_CASE in RUN_TEST_CASE prevents surrounding params
      "group" and "name" with parentheses.
      However, it appears that macro DECLARE_TEST_CASE isn't used elsewhere,
      so I eliminated DECLARE_TEST_CASE and put its expansion directly in
      RUN_TEST_CASE.  Now the following header files pass rule 19.10:
      * unity.h
      * unity_internals.h
      * unity_fixture.h
      
      For my own project, this change to the Unity test framework allows me
      to include my unit test code to be tested against MISRA rules as well,
      instead of just production code, to help enforce style and team
      guidelines.
      1273112a
  24. 06 10月, 2015 1 次提交
  25. 18 8月, 2015 1 次提交
  26. 15 7月, 2015 2 次提交