Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I have an ASP.Net application and I want to learn which lines of code are covered by unit tests. (Test team is testing in the system all the time, but I do not know which parts of the system are being tested)
Do you know of any tools for this purpose? It should be able to work on web applications and also show me the code coverage rates, with function or class names.
You can use Visual Studio 2012, if your version permits.
To do this go to the Test > Analyze Code Coverage > All Tests it will output your 'Code Coverage Results' like this:
Selecting 'Show Code Coverage Coloring' (circled in red above) results in the following:
Which highlights that Method2 is not covered.
See here for more detailed info:
http://msdn.microsoft.com/en-us/library/dd537628.aspx
There is also a paid for tool from jet brains, dotcover.
http://www.jetbrains.com/dotcover/
I have not used that but I'm sure someone else reading has and will be able to advise you.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
We are searching an open source scrum agile tool which can help us to do the reporting and manage our agile developments.
We need your help to find and choose the best tools
Here is the tool which will help you.
Agilefant.
1.Using this you can add your sprints.
2.You can assign tasks to particular user.
3.You can see the graph according to the hours spent by users.
4.Sprint backlogs also can carry in next sprint.
here is the link http://agilefant.com/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Is there a place where I can view the DOS nethack source code? Whenever I try to download the source code file it doesn't let me open the file. Is there a website/online pdf that has the code on it? Also if there are any tutorials on a beginning c++ roguelike could you tell me the link? Thank you.
You can download the source code here. But FYI no it doesn't come (displayed) on a website/online or in a pdf because that's not really a useful way to store or pass along source code. The useful way to store it is in the file types for the language the code is for.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am looking to download the trial version for Adobe After Effects CS6. I am trying to learn how to use the software, but i can't seem to find the trial version for CS6. Is there a trial version available for this software?
The problem with this request is that Adobe has moved on to a newer software version than CS6 namely Adobe Creative Cloud (cc). Any trial downloads that you find on the adobe site will now be for After Effects cc.
AEcc seems to be pretty similar to AEcs6. CC has some updates from cs6 that may lead to faster workflow. Here's a pretty good explanation of the improvements:
http://www.adobe.com/products/aftereffects/features.html
If you still want to try to find AEcs6, here are some links from Adobe that may or may not allow you to download AEcs6 as a trial.
This link may not have any trial option. It is for customers who have lost their DVD of AE to re-download it:
http://helpx.adobe.com/x-productkb/policy-pricing/cs6-product-downloads.html
This link may just be an update and not the full file:
http://www.adobe.com/support/downloads/thankyou.jsp?ftpID=5387&fileID=5012
There are other methods of finding AEcs6 if you need that specific version, but many of them are improper to list on SO.
I hope this helps.
Go here: https://creative.adobe.com/products/aftereffects and click the download button. You will download it through their creative cloud solution and will get 30 days of trial use.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
This question does not appear to be about programming within the scope defined in the help center.
Improve this question
I'm looking to (programmatically) convert a repository of Adobe Indesign template files (.indd) to something more easily manipulated by humans (ie, CSS/HTML files).
I'm more interested in an accurate conversion, than a fully readable one - the resulting files will be read by humans, and eventually made more readable.
Is there a tool or library I can use for this purpose?
Actually the only viable solution to convert from InDesign to html5 seems to be the "In5" plugin developed by Ajar Productions. I doubt it'll allow for bulk conversion but it seems to make a good job as regards accuracy.
Product and a detailed list of its features here: http://www.ajarproductions.com/pages/products/in5/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I'm using Drupal and would like to get a graph of functions called annotated with the times the functions took to execute. I found this image which demonstrates what I'm looking for:
However, I can't find a tool that can produce a similar image. What kind of tool am I looking for?
XHProf can generate call graph images similar to this, but not exactly the same. I believe Google searching using keywords PHP call graph or drupal call graph will provide you more information.
You can use XDebug and KCachegrind.