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.
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
Observed the advantages of CI for solo developers Is Continuous Integration important for a solo developer?
Is there any CI server suitable for solo developers?
They usually consume a lot of RAM and are server-agent based.
In my thinking, they need to be:
-lightweight (RAM)
-simple
-compatible with GitHub
Could you quote me?
Why don't you use jenkins/hudson? It is excellent you can configure it with sonar, codestyle, automatic build on every commit and many plugins.
Jenkins comes with an standalone jar file that you can use.
Yes, it's true that it consumes memory but it worth it and it isn't terrible memory consumer.
By the way, you can find here an interesting list:
http://www.opensourcecontinuousintegration.com/
You can take a look and see which one fits your needs.
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 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.
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 new to mobile testing and i want to test the ios apps through any of the automation tools available in the market,could you please suggest me which tool is best ? and useful links to that tool for how to use that tool in a proper manner
I personally prefer Calabash which is built on Cucumber if you want to do acceptance tests. Then you can automate your builds using Jenkins. There are support for Cucumber in Jenkins as well, you can find it here.
You can use Gorrila and TestStudio.
Also StackOverFlow
Another option is Appium, which lets you write tests in many languages and test frameworks.