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 am required to use mockito to create unit testing framework for existing code. I am unable to find a good place to get started with learning Mockito. Could you please point me to a good learning resource for mockito? (online resource or otherwise)
In the "Help me to start" thread on the mockito discussion group on Google, Szczepan Faber, the project owner of mockito, suggests:
the Documentation which includes some examples
Brett L. Schuchert's tutorial
I'd take a look at the posts in the mockito category of Szczepan's blog too.
For a overview about mock and mockito you can refer Mockito-a-great-mock-framework-for-Java-development
a nice succinct overview: http://www.javacodegeeks.com/2012/05/mocks-and-stubs-understanding-test.html
also, take a close look at the org.mockito.Mockito class itself in the API. most of the base behavior is held therein.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other 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
What can I do to improve the docs of the official Java API? Is there some convenient way such a wiki site of javadoc allowing people to edit?
If there is none available, what about some tool/script helping document integration? Something which provides auto-integration of javadoc and custom documents, so I can add contents while keeping sync with new API javadoc?
PS: I'm hoping to improve several parts such as JavaFX and Reflection, both lack examples and the latter contains many stub docs such as Class.getSimpleName() = returns the simple name of class.
Head over to OpenJDK. They have a section on 'Hacking the JDK itself' and they accept patches. There is a lot of synergy between OpenJDK and Oracle.
That said, Oracle also have a contribution process outlined here.
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
Coming from .NET, I'm used to Ninject, that's a small simple ioc-container. Is there anything simple and lightweight for Java?
The simpler the better!
Pico container or google-guice. See a comparison here.
Btw, few people will call spring "ligthweight", but it can be used as such with only the basic features. Hence it's included in the above comparison.
CDI? (almost the same thing as Guice, but is a JSR rather than proprietary)
Guice?
Silk DI is a 120K jar with no further runtime dependencies needed. So it is way more lightweight than e.g. guice or spring and still smaller as pico-container but has an even more powerful feature set. Also it doesn't cheat by splitting features into a separate additional jars like multibind for guice or the gems for pico-container.
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 any tool that helps analyse code structure in a java project, either as an eclipse pluggin or as a standalone?
I guess something similar to what Structure101 seems to do, but I am looking for something free.
I.e. to visualize dependencies among jars, classes, class-hierarchies etc.
It is mostly to understand an existing code-base faster, rather than set coding rules or profile etc.
I've found the following tools useful
CodePro Analytics - http://code.google.com/javadevtools/codepro/doc/index.html
JDepend - http://www.clarkware.com/software/JDepend.html
Sonar - http://www.sonarsource.org/
Metrics - http://metrics.sourceforge.net/
you mean like Sonar?
Tons of them. The thing is you probably want to google for the kinds of tests, eg, "McCabe complexity java" or "test coverage java".
You might have a look at this wikipedia article.
Update
Aha. Try depfind.
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'm interested in JMonkey for some fun projects, but when I search Google to find tutorials and docs, I can only find either really basic and/or incomplete stuff, like these on http://jmonkeyengine.org/, or really specific ones. Do you know some "from beginner to expert" tutorial for JMonkey?
http://jmonkeyengine.org/wiki/doku.php/jme3 has a complete series of tutorials for jME3. They just haven't been accessible via google until now..
http://jmonkeyengine.org/wiki/doku.php/jme2:jme2 has a series of tutorials for the now community-supported old jME2
Actually, the best I found is this one:
http://www.theprogrammersweblog.com/2008/12/3d-game-programming-in-java-using.html
It's incomplete (but maybe it will be completed someday), but 11 parts are already available.
The aim is to create a complete Asteroid game.
Hey check this Game Making PDF
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 am looking for an Arima time series models in java.
Is there any Java library implementing Arima/Arma model?
Googling should help :)
I got this from Google:
Java ARMA model, simulation and fitting
Java ARIMA model
Hi Please refer to Apache Math Library for other forms of Regression, like Simple, OLS, GLS etc. I am looking for the same API as you are and API suggested in an Answer above SuanShu is not useful because it's PAID. I think Apache Math might be useful for you.