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
One feature of the tool I am developing is to detect potential race conditions within a Java unit test suite (hazards introduced not by the application but how the test suite is written.). Are there any known such suites for me to test on? BTW, it would be better that less native methods get involved.
Thanks
The best you can do is to search few open source project issue trackers.
E.g.:
https://jira.springsource.org/browse/AMQP-280?jql=text%20~%20%22test%20race%20condition%22
I bet some of them will be pretty complicated.
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 9 years ago.
Improve this question
Is there a wizard like plugin for Eclipse that can generate all design patterns in Java and/or in C++, and it is free to use? I want something like this
I want to make a plugin as my diplomawork, PatternBox, and CodePro I already found.
PatternBox is not full, and CodePro as i understood is a part of a software package.
Seems like the Eclipse plugin from Patternbox is what you are searching for.
Caveat: I have never used it and won't try it out, I don't think is the right idea ...
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 currently working on developing a mutation testing tool and I need to find an Open Source Java project which has a relatively good amount of JUnit Tests. The idea is that I'll be using the opensource system and its TestSuite so as to perform a case study on my mutation testing tool. Thanks for your help :).
I too have written a mutation testing tool.
I recommend that you make sure your mutation tester detects the unnecessary code in Bob Martin's Bowling Scorer game as described here. It's not much code so it's a quick check.
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 trying to find tools that mutate Java source code. I am looking for these tools in order to assess the effectiveness of automated debugging algorithms. To date, I have been manually injecting faults in programs in order to test these algorithms. I think mutation will be a nice way to automate this task.
So far, I have only been able to find Mutation Testing tools, like Pitest and Jester.
These tools, despite having the mutators I'm looking for, do not save the mutated source files, which is what I'm after. So, please, do not recommend me Mutation Testing tools that only mutate programs in-memory.
Are there such tools available?
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 for something like jsfiddle but for java, so that code snippets and classes can be shared and tested.
At the moment, I am using a combination of pastebin and compileonline.com. I would rather not sign up for a huge online compiler service, just a quick and dirty code sharing/testing platform, that provides unique URL's for my code snippets.
I have seen other people asking similar questions:
https://stackoverflow.com/questions/15320286/is-there-online-compiler-for-java-like-jsfiddle
But there doesn't seem to be just the right tool. Anyone provide any pointers?
I tried using http://ideone.com/.
It supports a bunch of languages, including Java.
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 looking for a site like JsPerf but for Java. Is it possible to compile code in applet and then immediately run it (I guess there may be some security problems)?
Try out Rextester.com for executing java code online. Looks better than its alternate Ideone in terms of interface & is also free of ads.