Sha256: 08c69a141af52960e0e9043d717ff5df442f7889edcd145898c0cade3fcc3e72
Contents?: true
Size: 642 Bytes
Versions: 5
Compression:
Stored size: 642 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
5 entries across 5 versions & 1 rubygems