This commit is contained in:
Scott Bilas 2017-10-23 18:26:06 +02:00
Коммит 8ec595dbb0
4 изменённых файлов: 67 добавлений и 0 удалений

46
.editorconfig Normal file
Просмотреть файл

@ -0,0 +1,46 @@
# see http://editorconfig.org/ for docs on this file
root = true
[*]
indent_style = space
indent_size = 4
end_of_line = lf ; help with sharing files across os's (i.e. network share or through local vm)
#charset temporarily disabled due to bug in VS2017 changing to UTF-8 with BOM (https://favro.com/card/c564ede4ed3337f7b17986b6/Uni-17877)
#charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
# trailing whitespace is significant in markdown (bad choice, bad!)
[*.{md,markdown}]
trim_trailing_whitespace = false
# keep these and the VS stuff below in sync with .hgeol's CRLF extensions
[*.{vcproj,bat,cmd,xaml,tt,t4,ttinclude}]
end_of_line = crlf
# this VS-specific stuff is based on experiments to see how VS will modify a file after it has been manually edited.
# the settings are meant to closely match what VS does to minimize unnecessary diffs. this duplicates some settings in *
# but let's be explicit here to be safe (in case someone wants to copy-paste this out to another .editorconfig).
[*.{vcxproj,vcxproj.filters}]
indent_style = space
indent_size = 2
end_of_line = crlf
charset = utf-8-bom
trim_trailing_whitespace = true
insert_final_newline = false
# must be broken out because of 51-char bug (https://github.com/editorconfig/editorconfig-visualstudio/issues/21)
[*.{csproj,pyproj,props,targets}]
indent_style = space
indent_size = 2
end_of_line = crlf
charset = utf-8-bom
trim_trailing_whitespace = true
insert_final_newline = false
[*.{sln,sln.template}]
indent_style = tab
indent_size = 4
end_of_line = crlf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = false

3
.gitignore поставляемый Normal file
Просмотреть файл

@ -0,0 +1,3 @@
obj
**/bin/Debug
**/bin/Release

9
.repoconfig Normal file
Просмотреть файл

@ -0,0 +1,9 @@
[version]
repoconfig=4
[format]
path-ignore=<<EOT
EOT
[verify]
path=^[a-z0-9./_-]+$

9
README.md Normal file
Просмотреть файл

@ -0,0 +1,9 @@
# ABOUT THIS REPO
This is an extension to [NSubstitute](http://nsubstitute.github.io/) that provides mocking of concrete methods (non-interface, non-abstract) and statics.
Once we figure out API and workflow, we'll document it here. Currently this project is experimental.
TODO:
* Deal with warnings in all our dependencies (background: https://github.com/nsubstitute/NSubstitute/issues/310)