Merge pull request #520 from softwareinmotion/runner_mock_suffix

parse mock files correctly
This commit is contained in:
Mark VanderVoord
2021-01-07 18:08:09 -05:00
committed by GitHub
+1 -1
View File
@@ -197,7 +197,7 @@ class UnityTestRunnerGenerator
mock_headers = []
includes.each do |include_path|
include_file = File.basename(include_path)
mock_headers << include_path if include_file =~ /^#{@options[:mock_prefix]}.*#{@options[:mock_suffix]}$/i
mock_headers << include_path if include_file =~ /^#{@options[:mock_prefix]}.*#{@options[:mock_suffix]}\.h$/i
end
mock_headers
end