- 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:
mvandervoord
2009-02-19 03:30:45 +00:00
parent 3eeb7dd726
commit 24a56b0c38
7 changed files with 174 additions and 43 deletions

View File

@ -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