My favorites | Sign in
Project Logo
                
Details: Show all Hide all

Yesterday

  • 33 hours ago
    issue 34 (bind timeout when launching tests) commented on by lolve...@yahoo.fr   -   it would be nice to answer me! olivier.
    it would be nice to answer me! olivier.
  • 40 hours ago
    issue 34 (bind timeout when launching tests) commented on by lolve...@yahoo.fr   -   I tried to run an example program downloaded from the VUTPP site, and when I launch the sample test, first the bar is green, and after that I have a message error saying "an unhandled win32 exception occured in sampleBoostTest.exe[1800]", and the VUTPP bar becomes red. do you know where the error comes from? olivier.
    I tried to run an example program downloaded from the VUTPP site, and when I launch the sample test, first the bar is green, and after that I have a message error saying "an unhandled win32 exception occured in sampleBoostTest.exe[1800]", and the VUTPP bar becomes red. do you know where the error comes from? olivier.
  • 40 hours ago
    issue 34 (bind timeout when launching tests) reported by lolve...@yahoo.fr   -   What steps will reproduce the problem? 1.use of windows XP,VUTPP 0.4,boost 1.41.0,visual studio 2005 pro 2.creation of a project win32 console inside VS,with option "precompiled headers" checked 3.uncheck of "use precompiled headers", add of compiler.preprocessor definition (VUTPP_BOOSTTEST),add of line "'#define BOOST_TEST_MODULE DefaultSuite" 4.the program is : ************************************************************************ #include "stdafx.h" #define BOOST_TEST_MODULE DefaultSuite #include <boost/test/unit_test.hpp> int add( int i, int j ) { return i+j; } BOOST_AUTO_TEST_CASE( ) { // seven ways to detect and report the same error: BOOST_CHECK( add( 2,2 ) == 4 ); // #1 continues on error BOOST_REQUIRE( add( 2,2 ) == 4 ); // #2 throws on error if( add( 2,2 ) != 4 ) BOOST_ERROR( "Ouch..." ); // #3 continues on error if( add( 2,2 ) != 4 ) BOOST_FAIL( "Ouch..." ); // #4 throws on error if( add( 2,2 ) != 4 ) throw "Ouch..."; // #5 throws on error BOOST_CHECK_MESSAGE( add( 2,2 ) == 4, // #6 continues on error "add(..) result: " << add( 2,2 ) ); BOOST_CHECK_EQUAL( add( 2,2 ), 4 ); // #7 continues on error } ************************************************************************ What is the expected output? What do you see instead? error in option "running all tests" of VUTPP : "bind failed(timeout)" What version of the product are you using? On what operating system? last one : 0.4 boost : 1.41.0 OS : windows XP pro SP2 Please provide any additional information below. also tried with windows vista + VS 2008, same issue good luck for your project!
    What steps will reproduce the problem? 1.use of windows XP,VUTPP 0.4,boost 1.41.0,visual studio 2005 pro 2.creation of a project win32 console inside VS,with option "precompiled headers" checked 3.uncheck of "use precompiled headers", add of compiler.preprocessor definition (VUTPP_BOOSTTEST),add of line "'#define BOOST_TEST_MODULE DefaultSuite" 4.the program is : ************************************************************************ #include "stdafx.h" #define BOOST_TEST_MODULE DefaultSuite #include <boost/test/unit_test.hpp> int add( int i, int j ) { return i+j; } BOOST_AUTO_TEST_CASE( ) { // seven ways to detect and report the same error: BOOST_CHECK( add( 2,2 ) == 4 ); // #1 continues on error BOOST_REQUIRE( add( 2,2 ) == 4 ); // #2 throws on error if( add( 2,2 ) != 4 ) BOOST_ERROR( "Ouch..." ); // #3 continues on error if( add( 2,2 ) != 4 ) BOOST_FAIL( "Ouch..." ); // #4 throws on error if( add( 2,2 ) != 4 ) throw "Ouch..."; // #5 throws on error BOOST_CHECK_MESSAGE( add( 2,2 ) == 4, // #6 continues on error "add(..) result: " << add( 2,2 ) ); BOOST_CHECK_EQUAL( add( 2,2 ), 4 ); // #7 continues on error } ************************************************************************ What is the expected output? What do you see instead? error in option "running all tests" of VUTPP : "bind failed(timeout)" What version of the product are you using? On what operating system? last one : 0.4 boost : 1.41.0 OS : windows XP pro SP2 Please provide any additional information below. also tried with windows vista + VS 2008, same issue good luck for your project!

Earlier this year

  • Sep 21, 2009
    issue 33 (Working Directory 를 변경 할 수 없습니다.) reported by dagri82   -   What steps will reproduce the problem? 1. 프로젝트 내부에서 상대 경로를 사용 합니다. 2. 경로 참조에 관한 문제가 발생 합니다. 3. What is the expected output? What do you see instead? VUTPP는 Working Directory는 기본이 $SolutionDir 입니다. 경로를 변경 할 수 있는 방법이 제공되면 좋겠습니다. What version of the product are you using? On what operating system? 0.4 버전 google test에 붙여서 사용 합니다. Please provide any additional information below.
    What steps will reproduce the problem? 1. 프로젝트 내부에서 상대 경로를 사용 합니다. 2. 경로 참조에 관한 문제가 발생 합니다. 3. What is the expected output? What do you see instead? VUTPP는 Working Directory는 기본이 $SolutionDir 입니다. 경로를 변경 할 수 있는 방법이 제공되면 좋겠습니다. What version of the product are you using? On what operating system? 0.4 버전 google test에 붙여서 사용 합니다. Please provide any additional information below.
  • Aug 28, 2009
    issue 32 (Unittest++에서 Bind Failed(Timeout) 에러 ) commented on by neohind   -   이 내용은 http://code.google.com/p/vutpp/issues/detail?id=25&q=bind 에 해결 방법이 있 네요. 일단 방법은 예제 소스를 받은 뒤, 예제 소스에서 사용중인 TDD Framework에 해당하 는 프로젝트를 연 뒤, XXXXbind.cpp 라고 적힌 파일의 내용을 그대로 가져와서 돌려주면 됩 니다. VS2K5에서 MFC로 프로젝트를 만들어 Test Unit을 만든 상태인 경우 _tmain(xxxxx) 이라는 함수가 생기는데, 제가 해보니 오류가 나더군요. 옛날 한 옛날에 썼던 main(xxxx) 함수로 되어 있어야 되더군요. 여튼 정리하면 VS add-on과 테스트 결과물과의 bind 작업이 필요하 다는 것. 그리고 그 bind 작업에 대한 예제는 예제 소스 안에 있다는 것 정도겠네요.
    이 내용은 http://code.google.com/p/vutpp/issues/detail?id=25&q=bind 에 해결 방법이 있 네요. 일단 방법은 예제 소스를 받은 뒤, 예제 소스에서 사용중인 TDD Framework에 해당하 는 프로젝트를 연 뒤, XXXXbind.cpp 라고 적힌 파일의 내용을 그대로 가져와서 돌려주면 됩 니다. VS2K5에서 MFC로 프로젝트를 만들어 Test Unit을 만든 상태인 경우 _tmain(xxxxx) 이라는 함수가 생기는데, 제가 해보니 오류가 나더군요. 옛날 한 옛날에 썼던 main(xxxx) 함수로 되어 있어야 되더군요. 여튼 정리하면 VS add-on과 테스트 결과물과의 bind 작업이 필요하 다는 것. 그리고 그 bind 작업에 대한 예제는 예제 소스 안에 있다는 것 정도겠네요.
  • Aug 27, 2009
    issue 32 (Unittest++에서 Bind Failed(Timeout) 에러 ) reported by vicjung   -   What steps will reproduce the problem? 1. New Project -> MFC Application 인 Win32 Project를 선택해서 프로젝트 생성 2. Unittest++ 링크와 헤더경로등 생성 3. VUTPPBind.cpp 파일 복사해서 추가 4. 테스트 생성 What is the expected output? What do you see instead? VisualUnitTest++에서 Run후 Bind Failed(Timeout)에러가 발생합니다. Win32 Console Application 프로젝트에서 동일 방법으로 수행시 정상적으로 동작합니 다. What version of the product are you using? On what operating system? VisualStudio2005 Windows Server 2003 64bit (Win32와 64bit 양쪽 모두 컴파일했으나 동일 결과 발생) VisualUnitTest++ 0.4 Please provide any additional information below. MFC나 Win32 에서는 다른식으로 해야하나요? console 프로그램에서는 정상 동작을 합니 다.
    What steps will reproduce the problem? 1. New Project -> MFC Application 인 Win32 Project를 선택해서 프로젝트 생성 2. Unittest++ 링크와 헤더경로등 생성 3. VUTPPBind.cpp 파일 복사해서 추가 4. 테스트 생성 What is the expected output? What do you see instead? VisualUnitTest++에서 Run후 Bind Failed(Timeout)에러가 발생합니다. Win32 Console Application 프로젝트에서 동일 방법으로 수행시 정상적으로 동작합니 다. What version of the product are you using? On what operating system? VisualStudio2005 Windows Server 2003 64bit (Win32와 64bit 양쪽 모두 컴파일했으나 동일 결과 발생) VisualUnitTest++ 0.4 Please provide any additional information below. MFC나 Win32 에서는 다른식으로 해야하나요? console 프로그램에서는 정상 동작을 합니 다.
  • Jul 09, 2009
    issue 30 (Test case가 성공한 경우에만 can't find test 메시지가 출력되고 더블 클릭시 crash발생) commented on by rajal...@yahoo.co.kr   -   저도 같은 문제가 있어서 소스를 약간 수정했더니 테스트 성공은 제대로 동작하게 됐습니 다. class VUTPP_Listener : public UnitTestEventListenerInterface { ....... // 함수 추가 virtual void OnTestEnd(const TestInfo* pTestInfo) { bRun = true; } } VUTPP_Listener::bRun의 갱신 위치를 void OnNewTestPartResult(const TestPartResult* pResult)에서 virtual void OnTestEnd(const TestInfo* pTestInfo)로 변경. OnNewTestPartResult함수는 테스트가 실패하는 경우에만 실행됐습니다. 위의 수정으로 테스트는 제대로 성공/실패가 표시되게 됐는데 VC다운되는 문제는 여전히 나 타납니다.
    저도 같은 문제가 있어서 소스를 약간 수정했더니 테스트 성공은 제대로 동작하게 됐습니 다. class VUTPP_Listener : public UnitTestEventListenerInterface { ....... // 함수 추가 virtual void OnTestEnd(const TestInfo* pTestInfo) { bRun = true; } } VUTPP_Listener::bRun의 갱신 위치를 void OnNewTestPartResult(const TestPartResult* pResult)에서 virtual void OnTestEnd(const TestInfo* pTestInfo)로 변경. OnNewTestPartResult함수는 테스트가 실패하는 경우에만 실행됐습니다. 위의 수정으로 테스트는 제대로 성공/실패가 표시되게 됐는데 VC다운되는 문제는 여전히 나 타납니다.
  • Jun 28, 2009
    issue 31 (아래 issue ID 30번의 Screen shot 을 첨부 합니다.) reported by spacepro   -   자세한 내용은 issue ID 30번을 참조 바랍니다. 한번 등록한 issue는 수정이 안되나 보네요. 오류 화면의 Screen shot만 따로 첨부 합니다.
    자세한 내용은 issue ID 30번을 참조 바랍니다. 한번 등록한 issue는 수정이 안되나 보네요. 오류 화면의 Screen shot만 따로 첨부 합니다.
  • Jun 28, 2009
    issue 30 (Test case가 성공한 경우에만 can't find test 메시지가 출력되고 더블 클릭시 crash발생) commented on by spacepro   -   참고로 command line으로 테스트 코드를 실행한 결과입니다. 하단에 SampleSuite3의 SAMPLE_TEST가 성공한 것을 확인할 수 있습니다. D:\Projects\vutpp\vutppsamples\bin\Debug>SampleGoogleTest.exe [==========] Running 6 tests from 3 test cases. [----------] Global test environment set-up. [----------] 3 tests from SampleSuite [ RUN ] SampleSuite.SAMPLE_TEST d:\projects\vutpp\vutppsamples\samplegoogletest\sampletest.cpp(8): error: Value of: 2 Expected: a Which is: 3 [ FAILED ] SampleSuite.SAMPLE_TEST [ RUN ] SampleSuite.SAMPLE_TEST2 d:\projects\vutpp\vutppsamples\samplegoogletest\sampletest.cpp(16): error: The difference between a and 2.f is 1, which exceeds 0.1f, where a evaluates to 3, 2.f evaluates to 2, and 0.1f evaluates to 0.1. [ FAILED ] SampleSuite.SAMPLE_TEST2 [ RUN ] SampleSuite.SAMPLE_TEST3 d:\projects\vutpp\vutppsamples\samplegoogletest\sampletest.cpp(23): error: Value of: a==2 Actual: false Expected: true [ FAILED ] SampleSuite.SAMPLE_TEST3 [----------] 2 tests from SampleSuite2 [ RUN ] SampleSuite2.SAMPLE_TEST d:\projects\vutpp\vutppsamples\samplegoogletest\sampletest.cpp(30): error: Value of: 2 Expected: a Which is: 3 [ FAILED ] SampleSuite2.SAMPLE_TEST [ RUN ] SampleSuite2.SAMPLE_TEST2 d:\projects\vutpp\vutppsamples\samplegoogletest\sampletest.cpp(37): error: Value of: 2 Expected: a Which is: 3 [ FAILED ] SampleSuite2.SAMPLE_TEST2 [----------] 1 test from SampleSuite3 [ RUN ] SampleSuite3.SAMPLE_TEST [ OK ] SampleSuite3.SAMPLE_TEST [----------] Global test environment tear-down [==========] 6 tests from 3 test cases ran. [ PASSED ] 1 test. [ FAILED ] 5 tests, listed below: [ FAILED ] SampleSuite.SAMPLE_TEST [ FAILED ] SampleSuite.SAMPLE_TEST2 [ FAILED ] SampleSuite.SAMPLE_TEST3 [ FAILED ] SampleSuite2.SAMPLE_TEST [ FAILED ] SampleSuite2.SAMPLE_TEST2 5 FAILED TESTS D:\Projects\vutpp\vutppsamples\bin\Debug>
    참고로 command line으로 테스트 코드를 실행한 결과입니다. 하단에 SampleSuite3의 SAMPLE_TEST가 성공한 것을 확인할 수 있습니다. D:\Projects\vutpp\vutppsamples\bin\Debug>SampleGoogleTest.exe [==========] Running 6 tests from 3 test cases. [----------] Global test environment set-up. [----------] 3 tests from SampleSuite [ RUN ] SampleSuite.SAMPLE_TEST d:\projects\vutpp\vutppsamples\samplegoogletest\sampletest.cpp(8): error: Value of: 2 Expected: a Which is: 3 [ FAILED ] SampleSuite.SAMPLE_TEST [ RUN ] SampleSuite.SAMPLE_TEST2 d:\projects\vutpp\vutppsamples\samplegoogletest\sampletest.cpp(16): error: The difference between a and 2.f is 1, which exceeds 0.1f, where a evaluates to 3, 2.f evaluates to 2, and 0.1f evaluates to 0.1. [ FAILED ] SampleSuite.SAMPLE_TEST2 [ RUN ] SampleSuite.SAMPLE_TEST3 d:\projects\vutpp\vutppsamples\samplegoogletest\sampletest.cpp(23): error: Value of: a==2 Actual: false Expected: true [ FAILED ] SampleSuite.SAMPLE_TEST3 [----------] 2 tests from SampleSuite2 [ RUN ] SampleSuite2.SAMPLE_TEST d:\projects\vutpp\vutppsamples\samplegoogletest\sampletest.cpp(30): error: Value of: 2 Expected: a Which is: 3 [ FAILED ] SampleSuite2.SAMPLE_TEST [ RUN ] SampleSuite2.SAMPLE_TEST2 d:\projects\vutpp\vutppsamples\samplegoogletest\sampletest.cpp(37): error: Value of: 2 Expected: a Which is: 3 [ FAILED ] SampleSuite2.SAMPLE_TEST2 [----------] 1 test from SampleSuite3 [ RUN ] SampleSuite3.SAMPLE_TEST [ OK ] SampleSuite3.SAMPLE_TEST [----------] Global test environment tear-down [==========] 6 tests from 3 test cases ran. [ PASSED ] 1 test. [ FAILED ] 5 tests, listed below: [ FAILED ] SampleSuite.SAMPLE_TEST [ FAILED ] SampleSuite.SAMPLE_TEST2 [ FAILED ] SampleSuite.SAMPLE_TEST3 [ FAILED ] SampleSuite2.SAMPLE_TEST [ FAILED ] SampleSuite2.SAMPLE_TEST2 5 FAILED TESTS D:\Projects\vutpp\vutppsamples\bin\Debug>
  • Jun 28, 2009
    issue 30 (Test case가 성공한 경우에만 can't find test 메시지가 출력되고 더블 클릭시 crash발생) reported by spacepro   -   What steps will reproduce the problem? 1. Framework Guide대로 gtest코드를 수정 후 rebuild 수행. (gtestd.lib 생성) 2. vutppsamples\SampleGoogleTest\SampleGoogleTest.2005.vcproj 파일 오픈. 3. 빌드 후 실행하여 정상적으로 모든 Test가 실패하는것 확인.(붉은색 X표시 나타남) 4. SampleTest.cpp의 가장 아래에 있는 Test코드가 성공하도록 EXPECT_EQ( a, 3)으로 수정하고 Rebuild 후 Refresh Tests버튼 클릭 후 Run All클릭. 5. SampleSuite3의 SAMPLE_TEST가 초록색 check로 나타나야 하지만 붉은색 X표시와 함께 can't find test 메시지가 나타남. 6. can't find test 메시지를 마우스로 더블 클릭하면 Visual Studio가 crash나면서 비정상 종료됨. What is the expected output? What do you see instead? 성공한 Test case는 초록색 check 표시가 나와야 하는데 붉은색 X표시와 함께 can't find test 메시지가 나타남. 단, 실패한 Test case는 의도한 대로 나타남. What version of the product are you using? On what operating system? 한글 Windows XP Pro / 한글 Visual Studio 2005 / vutpp 0.4 / gtest 1.3.0 Please provide any additional information below. 영문 Visual Studio 2008에서도 동일한 증상이 나타남.
    What steps will reproduce the problem? 1. Framework Guide대로 gtest코드를 수정 후 rebuild 수행. (gtestd.lib 생성) 2. vutppsamples\SampleGoogleTest\SampleGoogleTest.2005.vcproj 파일 오픈. 3. 빌드 후 실행하여 정상적으로 모든 Test가 실패하는것 확인.(붉은색 X표시 나타남) 4. SampleTest.cpp의 가장 아래에 있는 Test코드가 성공하도록 EXPECT_EQ( a, 3)으로 수정하고 Rebuild 후 Refresh Tests버튼 클릭 후 Run All클릭. 5. SampleSuite3의 SAMPLE_TEST가 초록색 check로 나타나야 하지만 붉은색 X표시와 함께 can't find test 메시지가 나타남. 6. can't find test 메시지를 마우스로 더블 클릭하면 Visual Studio가 crash나면서 비정상 종료됨. What is the expected output? What do you see instead? 성공한 Test case는 초록색 check 표시가 나와야 하는데 붉은색 X표시와 함께 can't find test 메시지가 나타남. 단, 실패한 Test case는 의도한 대로 나타남. What version of the product are you using? On what operating system? 한글 Windows XP Pro / 한글 Visual Studio 2005 / vutpp 0.4 / gtest 1.3.0 Please provide any additional information below. 영문 Visual Studio 2008에서도 동일한 증상이 나타남.
  • Jun 19, 2009
    issue 29 (vs가 종료됩니다) commented on by klaizard   -   아 아래 글들을 읽어보니 비슷한 이슈가 있군요..
    아 아래 글들을 읽어보니 비슷한 이슈가 있군요..
  • Jun 19, 2009
    issue 29 (vs가 종료됩니다) reported by klaizard   -   일단 저는 구글 테스트(1.2.1, 1.3.0 둘다해봄)로 썼구요 vs2008 윈도xp vutpp 도 현재 최신버젼으로 사용했습니다 샘플 솔루션을 받아서 SampleGoogleTest.2008 프로젝트를 컴파일 하고 vutpp 를 실행시켰는데 모든 테스트가 잘 뜨고 결과도 모두 실패로 다 잘 나왔습니다. 그런데 테스트 코드들을 성공하도록 수정하고 다시 실행시켜봤는데 제가 수정한 테스트들이 ide 에 can't find test 라고 뜹니다. 그리고 그것들을 더블클릭하면 vs가 충돌나면서 종료됩니다. 예를들어 TEST(SampleSuite, SAMPLE_TEST3) { //Sleep( 1000 ); int a = 4; EXPECT_TRUE( a==3 ); } 여기서 a를 그냥 3으로 바꿔본겁니다.
    일단 저는 구글 테스트(1.2.1, 1.3.0 둘다해봄)로 썼구요 vs2008 윈도xp vutpp 도 현재 최신버젼으로 사용했습니다 샘플 솔루션을 받아서 SampleGoogleTest.2008 프로젝트를 컴파일 하고 vutpp 를 실행시켰는데 모든 테스트가 잘 뜨고 결과도 모두 실패로 다 잘 나왔습니다. 그런데 테스트 코드들을 성공하도록 수정하고 다시 실행시켜봤는데 제가 수정한 테스트들이 ide 에 can't find test 라고 뜹니다. 그리고 그것들을 더블클릭하면 vs가 충돌나면서 종료됩니다. 예를들어 TEST(SampleSuite, SAMPLE_TEST3) { //Sleep( 1000 ); int a = 4; EXPECT_TRUE( a==3 ); } 여기서 a를 그냥 3으로 바꿔본겁니다.
  • Jun 18, 2009
    issue 28 (cpp 파일 확장자 외에 다른 확장자를 지원할 계획은 없으신지요?) commented on by unace2u   -   감사합니다. 일단은 코드 수정으로 사용하고 있다가 다음 버전을 기대해야겠습니다.^^
    감사합니다. 일단은 코드 수정으로 사용하고 있다가 다음 버전을 기대해야겠습니다.^^
  • Jun 17, 2009
    issue 28 (cpp 파일 확장자 외에 다른 확장자를 지원할 계획은 없으신지요?) commented on by laro...@larosel.com   -   옵션창에서 파싱할 확장자를 입력할 수 있게 고려중입니다.
    옵션창에서 파싱할 확장자를 입력할 수 있게 고려중입니다.
  • Jun 17, 2009
    issue 28 (cpp 파일 확장자 외에 다른 확장자를 지원할 계획은 없으신지요?) reported by unace2u   -   안녕하세요. unit test용 파일을 hpp로 하고 다른 파일에서 인클루드하여 사용하고 있습니다. 그런데 hpp파일 은 파싱이 안되고 있더군요. 소스 코드를 보니까 확장자를 cpp와 비교하는 부분을 수정해서 사용하면 될 것 같긴한데 그냥 이슈로 등록합니다. 옵션창에서 cpp외에 다른 확장자를 입력으로 받아서 지원해주실 계획이 있으신지 궁금합니 다. vutpp를 너무도 잘 사용하고 있습니다. 감사합니다.
    안녕하세요. unit test용 파일을 hpp로 하고 다른 파일에서 인클루드하여 사용하고 있습니다. 그런데 hpp파일 은 파싱이 안되고 있더군요. 소스 코드를 보니까 확장자를 cpp와 비교하는 부분을 수정해서 사용하면 될 것 같긴한데 그냥 이슈로 등록합니다. 옵션창에서 cpp외에 다른 확장자를 입력으로 받아서 지원해주실 계획이 있으신지 궁금합니 다. vutpp를 너무도 잘 사용하고 있습니다. 감사합니다.
  • Jun 16, 2009
    issue 24 (테스트 이름을 고치면 Can't find test 오류를 뱉습니다.) commented on by spacepro   -   이제 보니 테스트가 성공한 경우에만 이런 문제가 있는것 같습니다. 테스트가 성공한 경우에 초록색으로 체크 표시가 나와야 하는데 그렇지 않고 Can't find test가 표시 됩니다.
    이제 보니 테스트가 성공한 경우에만 이런 문제가 있는것 같습니다. 테스트가 성공한 경우에 초록색으로 체크 표시가 나와야 하는데 그렇지 않고 Can't find test가 표시 됩니다.
  • Jun 16, 2009
    issue 24 (테스트 이름을 고치면 Can't find test 오류를 뱉습니다.) commented on by spacepro   -   테스트 코드를 수정 후 Rebuild를 했는데도 불구하고 여전히 Can't find test 라는 오류가 발생합니다. 그리고 Can't find test를 더블 클릭하면 VS 2008이 crash가 나면서 죽습니다. 참고로 svn에 있는 googletest용 sample code를 받아서 실행 했습니다.
    테스트 코드를 수정 후 Rebuild를 했는데도 불구하고 여전히 Can't find test 라는 오류가 발생합니다. 그리고 Can't find test를 더블 클릭하면 VS 2008이 crash가 나면서 죽습니다. 참고로 svn에 있는 googletest용 sample code를 받아서 실행 했습니다.
  • Jun 16, 2009
    issue 24 (테스트 이름을 고치면 Can't find test 오류를 뱉습니다.) commented on by spacepro   -   Rebuild를 했는데도 불구하고 여전히 Can't find test 라는 오류가 발생합니다. 그리고 Can't find test를 더블 클릭하면 VS 2008이 crash가 나면서 죽습니다. 참고로 svn에 있는 sample코드(VS 2008용)를 받아서 실행 했습니다.
    Rebuild를 했는데도 불구하고 여전히 Can't find test 라는 오류가 발생합니다. 그리고 Can't find test를 더블 클릭하면 VS 2008이 crash가 나면서 죽습니다. 참고로 svn에 있는 sample코드(VS 2008용)를 받아서 실행 했습니다.
  • Jun 04, 2009
    issue 27 (Google Mock와 연동이 되나요?) commented on by laro...@larosel.com   -   header파일에 있는 test는 인식하지 못합니다. 그리고 ifdef등을 사용하는 경우에도 오작동을 할 수 있습니다.
    header파일에 있는 test는 인식하지 못합니다. 그리고 ifdef등을 사용하는 경우에도 오작동을 할 수 있습니다.
  • Jun 04, 2009
    issue 27 (Google Mock와 연동이 되나요?) commented on by laro...@larosel.com   -   gmock프로젝트에 VUTPP_GOOGLETEST를 설정해주세요. 안되시면 파일을 메일로 보내주시기 바랍니다.
    gmock프로젝트에 VUTPP_GOOGLETEST를 설정해주세요. 안되시면 파일을 메일로 보내주시기 바랍니다.
  • Jun 03, 2009
    issue 27 (Google Mock와 연동이 되나요?) commented on by stallon.hong   -   lago...님. 빠른 답변 감사드립니다. 그런데 제가 1번에서 이미 VUTPP의 샘플 코드를 돌리는데 성공을 했다고 조건을 달았습니 다. 당연히 VUTPP_GOOGLETEST가 설정이 되어 있지요.
    lago...님. 빠른 답변 감사드립니다. 그런데 제가 1번에서 이미 VUTPP의 샘플 코드를 돌리는데 성공을 했다고 조건을 달았습니 다. 당연히 VUTPP_GOOGLETEST가 설정이 되어 있지요.
  • Jun 03, 2009
    issue 27 (Google Mock와 연동이 되나요?) Status changed by laro...@larosel.com   -  
    Status: Answered
    Status: Answered
  • Jun 03, 2009
    issue 27 (Google Mock와 연동이 되나요?) commented on by laro...@larosel.com   -   compiler.PreprocessorDefinitions need "VUTPP_GOOGLETEST" 라고 FrameworkGuide에 있네요.
    compiler.PreprocessorDefinitions need "VUTPP_GOOGLETEST" 라고 FrameworkGuide에 있네요.
  • Jun 03, 2009
    issue 27 (Google Mock와 연동이 되나요?) reported by stallon.hong   -   What steps will reproduce the problem? 1. VUTPP의 GoogleTest용 샘플코드 동작 확인 완료 2. gmock 프로젝트를 다운받고, gmock_main.cc를 vutpp에서 사용하던 main함수로 교체 3. 해당 main() 함수의 InitGoogleTest() --> InitGoogleMock()으로 변경 What is the expected output? What do you see instead? gmock의 테스트들이 VUTPP 브라우저에서 보여야 함 What version of the product are you using? On what operating system? 테스트들이 VUTPP 브라우저에 보이지 않음 Please provide any additional information below.
    What steps will reproduce the problem? 1. VUTPP의 GoogleTest용 샘플코드 동작 확인 완료 2. gmock 프로젝트를 다운받고, gmock_main.cc를 vutpp에서 사용하던 main함수로 교체 3. 해당 main() 함수의 InitGoogleTest() --> InitGoogleMock()으로 변경 What is the expected output? What do you see instead? gmock의 테스트들이 VUTPP 브라우저에서 보여야 함 What version of the product are you using? On what operating system? 테스트들이 VUTPP 브라우저에 보이지 않음 Please provide any additional information below.
  • Apr 10, 2009
    issue 26 (x64 프로젝트 사용 문제) Status changed by laro...@larosel.com   -   일단은....제가 x64가 없어서-_-;;; 작업이 진행이 불가능한 상태입니다. 죄송합니다.
    Status: Answered
    일단은....제가 x64가 없어서-_-;;; 작업이 진행이 불가능한 상태입니다. 죄송합니다.
    Status: Answered
  • Apr 09, 2009
    issue 26 (x64 프로젝트 사용 문제) reported by ysb7604   -   unit test 툴 찾던중에 이툴을 찾게 되어 사용 하려 하고 있습니다. win32 x86 에선 잘 작동 하는 사항 확인 하였습니다. x64 프로젝트에선 x64 Lib가 아니어서 제대로 작동하지 않습니다. x64 쪽에서도 사용 가능한지 문의 드립니다.
    unit test 툴 찾던중에 이툴을 찾게 되어 사용 하려 하고 있습니다. win32 x86 에선 잘 작동 하는 사항 확인 하였습니다. x64 프로젝트에선 x64 Lib가 아니어서 제대로 작동하지 않습니다. x64 쪽에서도 사용 가능한지 문의 드립니다.
  • Mar 30, 2009
    issue 25 (googletest에서 Bind Failed(TimeOut) 메세지 문제) Status changed by laro...@larosel.com   -   설명에 쓰여있지만 샘플 프로젝트에서 Bind코드를 카피하셔야 합니다. 샘플 프로젝트를 받으신 후 참고하시기 바랍니다.
    Status: Answered
    설명에 쓰여있지만 샘플 프로젝트에서 Bind코드를 카피하셔야 합니다. 샘플 프로젝트를 받으신 후 참고하시기 바랍니다.
    Status: Answered
  • Mar 30, 2009
    issue 25 (googletest에서 Bind Failed(TimeOut) 메세지 문제) reported by NaviiAlto   -   Vista x64, VS2008 에서 googletest쓰다가 VUTPP를 발견하고 급 반가운 마음에 후딱 셋팅하고 실행해보니 "Bind Failed(Timeout)" 에러메세지를 내뿜내요 제가 중간에 셋팅을 잘못한걸까요? 영어가 잼병이라 실수햇을지도;; 셋팅은 이러합니다. UnitTestEventListenerInterface 추상클래스를 gtest.cc에서 testing::UnitTestEventListenerInterface 으로 옮김니다. gtest.h 헤더의 testing::internal 네임스페이스에 void ParseGoogleTestFlagsOnly(int* argc, char** argv); void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv); 함수 추가 UnitTest 클래스에 // gtest.h void AddListener(class UnitTestEventListenerInterface *listener); 함수 추가 UnitTest 구현부에 // gtest.cpp void UnitTest::AddListener(UnitTestEventListenerInterface *listener) { internal::MutexLock lock(&mutex_); static_cast<UnitTestEventsRepeater*>( impl_->result_printer() )->AddListener( listener ); } 함수 추가
    Vista x64, VS2008 에서 googletest쓰다가 VUTPP를 발견하고 급 반가운 마음에 후딱 셋팅하고 실행해보니 "Bind Failed(Timeout)" 에러메세지를 내뿜내요 제가 중간에 셋팅을 잘못한걸까요? 영어가 잼병이라 실수햇을지도;; 셋팅은 이러합니다. UnitTestEventListenerInterface 추상클래스를 gtest.cc에서 testing::UnitTestEventListenerInterface 으로 옮김니다. gtest.h 헤더의 testing::internal 네임스페이스에 void ParseGoogleTestFlagsOnly(int* argc, char** argv); void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv); 함수 추가 UnitTest 클래스에 // gtest.h void AddListener(class UnitTestEventListenerInterface *listener); 함수 추가 UnitTest 구현부에 // gtest.cpp void UnitTest::AddListener(UnitTestEventListenerInterface *listener) { internal::MutexLock lock(&mutex_); static_cast<UnitTestEventsRepeater*>( impl_->result_printer() )->AddListener( listener ); } 함수 추가
  • Mar 13, 2009
    issue 24 (테스트 이름을 고치면 Can't find test 오류를 뱉습니다.) Status changed by laro...@larosel.com   -   너무나 당연하게도 테스트 이름을 고치셨으면 빌드를 하셔야지 정상적으로 실행이 됩니다.
    Status: Answered
    너무나 당연하게도 테스트 이름을 고치셨으면 빌드를 하셔야지 정상적으로 실행이 됩니다.
    Status: Answered
  • Mar 12, 2009
    issue 24 (테스트 이름을 고치면 Can't find test 오류를 뱉습니다.) reported by khris.mana   -   Visual Studio 2003에서 UnitTest++과 함께 사용중입니다. 테스트 이름을 고친 후 테스트를 하면 Can't find test 라는 오류와 함께 결과를 제대로 출력하지 못하더군요. Rebuild를 하고 다시 테스트를 수행하면 제대로 결 과를 보여줍니다.
    Visual Studio 2003에서 UnitTest++과 함께 사용중입니다. 테스트 이름을 고친 후 테스트를 하면 Can't find test 라는 오류와 함께 결과를 제대로 출력하지 못하더군요. Rebuild를 하고 다시 테스트를 수행하면 제대로 결 과를 보여줍니다.
  • Mar 12, 2009
    issue 19 (빈 소스코드를 추가하면 VS가 죽어버립니다) Status changed by laro...@larosel.com   -  
    Status: Released
    Status: Released
  • Mar 12, 2009
    issue 23 (boost unittest결과가 vutpp툴에 제대로 반영되지 않습니다.(boost unittest fram...) Status changed by laro...@larosel.com   -  
    Status: Released
    Status: Released
  • Mar 12, 2009
    issue 22 ([bug] UnitTest++의 SUITE{} 한 상태가 vutpp툴에 제대로 반영되지 않습니다.) Status changed by laro...@larosel.com   -  
    Status: Released
    Status: Released
  • Mar 12, 2009
    issue 18 ("GetProcAddress(RunTest) Failed" MessageBox가 나타남) Status changed by laro...@larosel.com   -  
    Status: OldAnswer
    Status: OldAnswer
  • Mar 12, 2009
    issue 12 (Add PopupMenu(ContextMenu) in TestList(TreeView)) Status changed by laro...@larosel.com   -  
    Status: Released
    Status: Released
  • Mar 12, 2009
    issue 9 (support debug) Status changed by laro...@larosel.com   -  
    Status: Released
    Status: Released
  • Mar 12, 2009
    issue 21 (새버전 UnitTest++ Ver 1.4에서의 몇가지 문제점..) Status changed by laro...@larosel.com   -  
    Status: Released
    Status: Released
  • Mar 12, 2009
    issue 17 (Load Library Failed) Status changed by laro...@larosel.com   -  
    Status: Released
    Status: Released
  • Mar 12, 2009
    issue 15 (Package Load Error) Status changed by laro...@larosel.com   -  
    Status: Released
    Status: Released
  • Mar 12, 2009
    FrameworkGuide (Framework Guide) Wiki page edited by laro...@larosel.com
  • Mar 12, 2009
    VisualUnitTest.0.4.msi (Addin Install File) file uploaded by laro...@larosel.com   -  
    Labels: Featured Type-Installer 0.4
    Labels: Featured Type-Installer 0.4
  • Mar 12, 2009
    vutpp.0.4.png (0.4 screenshot) file uploaded by laro...@larosel.com   -  
    Labels: Deprecated
    Labels: Deprecated
  • Mar 12, 2009
    VisualUnitTest.0.4.msi (Addin Install File) file uploaded by laro...@larosel.com   -  
    Labels: Type-Installer Featured 0.4
    Labels: Type-Installer Featured 0.4
  • Mar 12, 2009
    History (History and Changes) Wiki page edited by laro...@larosel.com
  • Mar 12, 2009
    FrameworkGuide (Framework Guide) Wiki page edited by laro...@larosel.com
  • Mar 12, 2009
    vutppsamples.0.4.zip (Samples) file uploaded by laro...@larosel.com   -  
    Labels: Type-Archive Featured 0.4
    Labels: Type-Archive Featured 0.4
  • Mar 12, 2009
    VisualUnitTest.0.4.msi (MainFile) file uploaded by laro...@larosel.com   -  
    Labels: Type-Installer Featured 0.4
    Labels: Type-Installer Featured 0.4
  • Mar 12, 2009
    vutppsrc.0.4.zip (Source code) file uploaded by laro...@larosel.com   -  
    Labels: Type-Source 0.4
    Labels: Type-Source 0.4
  • Mar 12, 2009
    r46 ([No log message]) committed by laro...@larosel.com   -   [No log message]
    [No log message]
  • Mar 12, 2009
    r45 ([No log message]) committed by laro...@larosel.com   -   [No log message]
    [No log message]
 
Hosted by Google Code