mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2025-06-04 20:16:36 +08:00
- happier with const (and more optimized on some compilers)
- better helper examples - general purpose memory compare git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@16 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
This commit is contained in:
@ -59,7 +59,7 @@ class UnityTestRunnerGenerator
|
||||
def find_mocks(includes)
|
||||
mock_headers = []
|
||||
includes.each do |include_file|
|
||||
mock_headers << include_file if include_file.include? "Mock"
|
||||
mock_headers << include_file if (include_file =~ /^mock/i)
|
||||
end
|
||||
return mock_headers
|
||||
end
|
||||
|
Reference in New Issue
Block a user