mirror of
https://github.com/ThrowTheSwitch/CMock
synced 2025-03-12 16:51:11 -04:00
9 lines
357 B
Ruby
9 lines
357 B
Ruby
require "#{ENV['CMOCK_DIR']}/lib/cmock"
|
|
|
|
raise "Header file to mock must be specified!" unless ARGV.length >= 1
|
|
|
|
mock_out = ENV.fetch('MOCK_OUT', './build/test/mocks')
|
|
mock_prefix = ENV.fetch('MOCK_PREFIX', 'mock_')
|
|
cmock = CMock.new({:plugins => [:ignore, :return_thru_ptr], :mock_prefix => mock_prefix, :mock_path => mock_out})
|
|
cmock.setup_mocks(ARGV[0])
|