Re: [boinc_dev] GoogleTest

2018-01-17 Thread Kevin Reed
> From: Vitalii Koshura > To: BOINC Developers Mailing List > Date: 01/17/2018 02:36 PM > Subject: [boinc_dev] GoogleTest > Sent by: "boinc_dev" > > Hello @all, > > As I wrote before I want to add unit

Re: [boinc_dev] GoogleTest

2018-01-17 Thread Vitalii Koshura
Hello Christian, This way is OK for linux. But what I can do for Windows? We use http://boinc.berkeley.edu/git/boinc_depends_win_vs2013.git and another one repo for VS 2012. I have no permissions to write to this repo. Maybe it is a good idea to refactor this too and make some kind of batch

Re: [boinc_dev] GoogleTest

2018-01-17 Thread Christian Beer
Hi, I'm ok with this as GoogleTest is an xUnit framework which makes life easier once we want to add unit tests for other languages. As for the license this is not a problem as long as we don't copy the code into our repository (and even then it is possible because it is BSD 3clause), which we

[boinc_dev] GoogleTest

2018-01-17 Thread Vitalii Koshura
Hello @all, As I wrote before I want to add unit test support to test existing XML parser and move to another 3rd-party XML parser further. So I have a question: can we use Google Test library in our project ( https://github.com/google/googletest )? I am curious about the license. I do not have