Sha256: 0404edfe0fd703d20f9f8392cc665229fe6b78a5323b06bd1aea5dfb73c5302b

Contents?: true

Size: 679 Bytes

Versions: 2

Compression:

Stored size: 679 Bytes

Contents

---
:cmock:
  :plugins:
  - 'ignore'
  :fail_on_unexpected_calls: FALSE

:systest:
  :types: |

  :mockable: |
    int foo(int a);
    void bar(int b);

  :source:
    :header: |
      int function(int a, int b, int c);
    :code: |
      int function(int a, int b, int c)
      {
        bar(b);
        return foo(a) + foo(b) + foo(c);
      }

  :tests:
    :common: |
      void setUp(void) {}
      void tearDown(void) {}
    :units:
    - :pass: TRUE
      :should: 'With "fail_on_unexpected_calls" disabled, Expect/Ignore/... of bar is NOT required.'
      :code: |
        test()
        {
          function(1, 2, 3);
        }

...

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ceedling-0.29.1 vendor/cmock/test/system/test_interactions/ignore_strict_mock_calling.yml
ceedling-0.29.0 vendor/cmock/test/system/test_interactions/ignore_strict_mock_calling.yml