Step by step instructions for getting cppunit up and running with Netbeans 7.2 on OS X 10.8 Mountain Lion

∥☆過路亽.° 提交于 2019-12-23 18:04:12

问题


Can someone please provide step by step instructions for getting cppunit working on OS X 10.8 Mountain Lion? This includes any downloads needed and any configuration of Netbeans.

Currently, when I add a cppunit test, there is a warning on the Add Test dialog that says "cppunit library is not detected. Test compilation might fail." I've download both from Sourceforge and from svn cppunit and copied the files to /usr/local/include, but this does not make compilation errors go away.

What am I missing? The Google™ has been of no help with this issue.


回答1:


I used Homebrew to install CppUnit on OS X 10.8 Mountain Lion. Unit tests then worked from within Netbeans without issue.

The process I followed was:

  1. Install the XCode Command Line Tools
    • Available in XCode preferences or Download as separate DMG
  2. Install Homebrew
    • See http://mxcl.github.com/homebrew/
    • ruby -e "$(curl -fsSkL raw.github.com/mxcl/homebrew/go)"
    • Following install instructions (brew doctor at the end for example)
  3. Use brew to install cppunit
    • brew install cppunit
  4. In Netbeans:
    • Create C++ project
    • Add a function to test
    • Right click cpp file, select "Create Test", choose CppUnit Test
    • Select function from list, follow prompts to create test
  5. Execute tests
    • Right click project, select Test (or crtl+F6)



回答2:


I finally figured out what I was doing wrong, so I thought I would answer my own question and avoid a Wisdom of the Ancients.

  1. install Xcode.
  2. install Xcode Command Line Tools via the Preferences dialog (Apple's documentation showing how to do this in Xcode 4)
  3. download CPPUnit from Sourceforge
  4. extract
  5. Run ./configure
  6. run make
  7. run sudo make install

It's possible that the first time I tried this I didn't run the correct command for ./configurebut that's a dubious claim given the fact that I was able to tab complete i.e. I shouldn't have been able to run say ./config.

But I think the real key to my problem was having to call sudo on the make install. I was getting a permission error because the script needs admin rights to put the libraries where they need to go. I could have swore I tried this at some point and it too failed.

I had a coworker try this for me a month or so ago and he got it to work. I procrastinated retrying, but once I did, it worked like a charm. As far as I know, there's no bug between OS X 10.8.1 and 10.8.2 or .3.

Once I followed the steps I have listed above, I was able to go back to Netbeans and add a unit test without the dialog complaining. Furthermore, the test code compiled and ran.



来源:https://stackoverflow.com/questions/12666755/step-by-step-instructions-for-getting-cppunit-up-and-running-with-netbeans-7-2-o

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!