TFS alternative [closed] - unit-testing

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
What is alternative to TFS-server with good integration to Visual Studio and uploading test results from Nunit to that system? I need tracking unit test result, reporting unit track result, but TFS-server is expensive. Maybe exist OpenSource software for this goals?

If you have small team, you can consider Visual Studio Team Service, which is free for 5 users.
You can check the pricing here: https://www.visualstudio.com/team-services/pricing/

Related

Unit testing framework for xsl-fo [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I need to run unit tests on xsl-fo. I wanted to know if there are any frameworks I can use.
utf-x seems to be very complicated
Antenna House Regression Testing System (http://www.antennahouse.com/antenna1/antenna-house-regression-testing-system/) can run your FO and give you a pixel-by-pixel comparison between the formatted output and a reference output.
If you want to test the XSLT that produces the FO, look at XSpec (https://github.com/expath/xspec).

Examples of small and middle opensource projects on GTK+ [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Can you tell me where i can see a source of examples GTK+ projects (non gtkmm). It is desirable that be used Glade for design UI. I want to see how to organize program and get experience.
You've got plenty of projects in GTK+ in many languages on the GNOME development servers.

where can i find XFS API reference and samples? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I wanna work with CEN/XFS (Extensions for Financial Services), possibly in C#.NET.
could anyone tell me how and where can i find XFS last release API reference and samples?
and does .NET framework have classes & tools for XFS?
Thanks.

RELAX NG C++ Code Generator? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Are there any open source RELAX NG C++ code generator?
Thanks.
I know of none for RELAX NG. However, if you can bring yourself to generate or convert your schema files as XML Schema, then it would be worthwhile to take a look at the C++ code generators from CodeSynthesis. They are GPLv2 open source, with proprietary licenses also available.
http://www.codesynthesis.com/products/

Which open-source C++ projects have good (inspiring) tests? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
What are inspiring examples of open-source software written in C++ with great tests?
I would like to read, study and follow.
I like mysql's exhaustive test suite, where they add a test for almost every bug they fix to prevent regressions.
I have not read the source code, but PHP have a lot of tests which kan be easily run by make test after compilation.