Google cpplint integration in QtCreator - qt-creator

Is it possible to integrate Google's cpplint in QtCreator?
I've looked for a plugin or another way of integration but so far my search hasn't produced any results.

Related

How could I integrate fbinfer with my maven project?

I'm new to fbinfer. I need to integrate my maven project with fbinfer for static code analysis.
Answering this a little late but Sonatype just launched a free Code quality and Software Composition Analysis (SCA) solution called Lift for devs using GitHub: http://lift.dev/
The list of included analyzers includes FBInfer and it takes two clicks (authorize GitHub app) to integrate your Maven application with Lift/FBInfer, thereby eliminating the pain of manually setting up an analyzer.
https://help.sonatype.com/lift/included-analyzers

Where is the Elasticsearch Plugin API Documentation?

The closest thing I've found is their Elasticsearch Plugins and Integrations
page, which doesn't help. I was following their out of date tutorial to make a "hello world" plugin, but I can't find any documentation on the classes used. Is there a page with information on what each class does, or do I have to look at the code to figure it out on my own?
To quote elastic search developer Adrien Grand(jpountz) "No, there is no guide about writing plugins and the API is actually quite unstable. The plugin API is mainly a way for us to provide additional functionality through plugins so that we do not have to fold everything into a single release artifact that would be quite huge. Some community membors have writter plugins by taking inspiration of existing plugins but we do not want to commit on a stable API for plugins as this might prevent us from improving other areas of elasticsearch."
The only real way of learning about developing a plugin is trying to find something similar and modifying it to suite your needs. Developing anything remotely complex will require an extensive knowledge of the ES codebase. I suggest you look into some plugins developed by jprante to get started.

Testing in Nativescript Telerik Appbuider

I've searched all over and have not found anyone who has been able to test a Nativescript project built on the Telerik Appbuilder. Even if it means exporting the project externally and testing in command line, is there any way to test it with Karma and Jasmine/Mocha?
This is probably a stretch, but I'm guessing there's also no way to integrate with continuous integration, such as Jenkins?

Valkyrie RCP tutorials and guides

Did anyone hear about Valkyrie RCP, the Spring 3.0 port of the current Spring Rich Client codebase ?
I want to try something with this framework because i'm familiar with Spring, but i didn't find any tutorials about that on the internet, where can I find some docs and guides ?
I actively maintain Valkyrie RCP here Valkyrie RPC # github.
You can find documentation for Valkyrie RPC here and there a quite a few demo applications in the repository.
To get started quickly use maven to generate a skeleton project like this:
mvn archetype:generate
-DarchetypeGroupId=org.valkyriercp
-DarchetypeArtifactId=valkyrie-rcp-archetype
-DarchetypeVersion=1.1-SNAPSHOT
I think the project Valkyrie RCP is dead. But I'm not sure.
In fact there is a fork of this project here: ndeverge.
There is some documentation.
Someone have another news about this project. I am also interested.
If you're interested in rich client apps you might want to have a look at Eclipse Scout. It is Java/Eclipse based and available under the EPL.
Scout primarily addresses building client server business applications. With its clean separation of the client ui model from the actual ui rendering you have the options to run your app with SWT, Swing, or web application (based on Eclipse RAP).
There is a video tutorial, wiki tutorials, and a forum for questions.
Have fun!

Can the Lightweight Testing Automation Framework (LTAF) be used in Continuous Integration?

I'm interested in using the Lightweight Testing Automation Framework (LTAF) to create integration tests for my web application. However, I need it to be run on the build server. Does anyone know if this can set up to do this?
There does not seem to be a whole lot of information on the web on this right now :-)
There's a blog post (Lightweight Test Automation Framework – Automated Build Support) that describes how to implement the runner as a console application, it can then be integrated into a build server fairly simply by redirecting the build output and setting the return code appropriately.
The author posted the code used in the article, you can download it from here.
I don't have experience with LTAF, but found this nice article:
First steps with Lightweight Test Automation Framework
Quoting the author (Steve Sanderson, from the comments):
Lightweight Test Automation Framework
can be invoked with query string
parameters (to specify which tests to
run) and can emit a log of the results
to a text file, so it would be
possible to integrate it. However,
this is certainly not as easy as using
Selenium RC which as you say works
through a traditional test runner.

Resources