Is there a way to obtain a list of all classe开发者_高级运维s that implement a certain Interface inside a directory?In the directory:
I\'m building a couple of customs FxCop rules and one of the rules needs to enforce that a constructor is called in specific methods. For that, I need to create a list of callers, to that specific con
I am getting my hands on TFS 2010, and I am starting with trying to set a continuous integration build up. For this purpose I am using the default build template (DefaultTemplate.xml) configured with
I need to get the static information of C++ program with CDT. No need to build the project, just to get the basic information(namespace, class, extends relation, method, call, field) and save them to
i encountered the following problem when i use PyCh开发者_如何转开发ecker on modules with an import that is not existing. I called PyChecker with the --keepgoing and --only flags:
I am experimenting with applying Code Contracts to my code and I\'ve hit a perplexing problem. This code is failing to meet the contract but unless I\'m being really thick I would expect it to be able
I\'m looking for a lint for Perl, something that would catch dead code a开发者_运维百科nd other potential problems.Any suggestions?
Has anyone used cccc with pure C code? I tried it and it seems to handle all the files as one module, which 开发者_如何学JAVAmeans that most of the counters are useless (e.g. there is no fan-in or fa
Is there a way to quickly search for the complete list of code paths to one particular function in my project, in order to find out whether some certain upper-lever function calls it, either directly
How do I find all the unit tests that may dir开发者_运维技巧ectly or indirectly call a given method?