Skip to content

Quick Start

kristiancalhoun edited this page Jun 20, 2012 · 27 revisions

Get the Code

.NET

  • Open DotNet\CesiumLanguageWriter.sln
  • Build the included projects
    • Visual Studio: Build - Build Solution (Ctrl + Shift + B)
    • MonoDevelop: Build - Build All (F8)
  • Run the unit tests:
    • Visual Studio:
      • Download and install the latest version of Nunit
      • Tools - External Tools, Add 'NUnit' and fill out the following fields: Set up NUnit as an external tool in Visual Studio
      • View - Toolbars - Customize
      • New - Enter 'NUnit Tools'.
      • On the Commands tab, add the external command (usually External Command 1 when you don’t have any other external commands). Add the NUnit toolbar in Visual Studio
      • Click the NUnit button in the new toolbar to start the NUnit GUI and load the current test suite.
      • To debug tests within Visual Studio, Debug - Attach To Process... - nunit-agent.exe
    • MonoDevelop: Choose a test project or file from the solution view and select Run - Run Unit Tests (Ctrl + T)

##Java:

  • In Eclipse
    • File - Import - General - Existing Projects into Workspace
    • Select root directory: \czml-writer\Java
  • Build the included projects:
    • Project - Build All (Ctrl + B)
    • Or select Project - Build Automatically to build when changes are saved.
  • Run the unit tests:
    • In the Package or Project Explorer (Window - Show View), right-click the test project or file and select Run-As - Junit Test
Clone this wiki locally