mirror of
https://github.com/ThrowTheSwitch/CMock
synced 2025-01-22 08:28:42 -05:00
16 lines
682 B
Ruby
16 lines
682 B
Ruby
# =========================================================================
|
|
# CMock - Automatic Mock Generation for C
|
|
# ThrowTheSwitch.org
|
|
# Copyright (c) 2007-25 Mike Karlesky, Mark VanderVoord, & Greg Williams
|
|
# SPDX-License-Identifier: MIT
|
|
# =========================================================================
|
|
|
|
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 => %i[ignore return_thru_ptr], :mock_prefix => mock_prefix, :mock_path => mock_out)
|
|
cmock.setup_mocks(ARGV[0])
|