Albert Weinert

Results 41 comments of Albert Weinert

Just to throw in an alternate syntax for the suggestion of @jnyrup ``` Contain(IEnumerable other, string because = "", params object[] becauseArgs) where TComparer : IEqualityComparer, new() ``` I don't...

An alternative/additional way would could be ``` ContainEquivalentsOf(IEnumerable other, string because = "", params object[] becauseArgs) NotContainEquivalentsOf(IEnumerable other, string because = "", params object[] becauseArgs) ``` That would compare with...

No it is not a convention. most from what i see put the view in seperate folders

@citizenmatt i think on the weekend i can work in the plugin

btw. the "other" guys uses often yeoman For an example of the structure look here. http://www.sitepoint.com/kickstart-your-angularjs-development-with-yeoman-grunt-and-bower/

@citizenmatt my last work is on https://github.com/deralbertcom/resharper-angularjs Some initial Cache implementation https://github.com/DerAlbertCom/resharper-angularjs/tree/master/src/resharper-angularjs/JavaScript and support for a solution specific xml with "own" directives. https://github.com/DerAlbertCom/resharper-angularjs/blob/master/src/resharper-angularjs/Html/SolutionDeclaredElementsProvider.cs

That's great a great Starting Point. Thanks,

In microsoft/vstest#2123 is mentioned that the test adapter seems to capture the exception during discovery, because of that the Test2 and Test3 are not run and lost. I took a...