Jnario Maven Plugin

The compiler library for the Jnario testing language.

License

License

Eclipse Public License v1.0
Categories

Categories

Maven Build Tools JNA Development Tools Native
GroupId

GroupId

org.jnario
ArtifactId

ArtifactId

jnario-maven-plugin
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

maven-plugin
Description

Description

Jnario Maven Plugin
The compiler library for the Jnario testing language.
Project URL

Project URL

http://www.jnario.org/
Project Organization

Project Organization

BMW Car IT
Source Code Management

Source Code Management

https://github.com/sebastianbenz/Jnario

Download jnario-maven-plugin

How to add to project

<plugin>
    <groupId>org.jnario</groupId>
    <artifactId>jnario-maven-plugin</artifactId>
    <version>1.0.0</version>
</plugin>

Dependencies

compile (6)

Group / Artifact Type Version
org.eclipse.xtend : xtend-maven-plugin maven-plugin 2.6.2
org.jnario : org.jnario.standalone jar 1.0.0
commons-lang : commons-lang jar 2.4
org.apache.maven : maven-plugin-api jar 2.0
org.apache.maven : maven-project jar 3.0-alpha-2
com.google.guava : guava jar 10.0.1

test (2)

Group / Artifact Type Version
junit : junit jar 4.10
org.apache.maven.shared : maven-verifier jar 1.3

Project Modules

There are no modules declared in this project.

Build Status

Overview

Jnario is a framework for writing executable specifications for Java. It provides all the goodness of Xtend while being specifically tailored to writing acceptance and unit tests. It is easy to integrate as Jnario specifications are compiled to plain Java Junit tests. Head over to Jnario.org for more information.

See the release notes for the current version.

Dependencies & Installation

  • Jnario requires at least Eclipse 3.6 with Xtext 2.6 and Xtend 2.6. You can install both from this update site http://download.eclipse.org/modeling/tmf/xtext/updates/composite/releases/.
  • The latest snapshot verion of Jnario can be installed from the following update site http://www.jnario.org/updates/snapshot/.

Examples

Acceptance Specification

Feature: Addition

  In order to avoid silly mistakes
  As a math idiot
  I want to be told the sum of two numbers
  
  Scenario: Add two numbers
    Calculator calculator = new Calculator()
    Given I have entered "50" into the calculator
      calculator.enter(args.first)
    And I have entered "70" into the calculator
    When I press "add"
      calculator.press(args.first)
    Then the result should be "120" on the screen
      calculator.result => args.first

Unit Specifications

package example

import java.util.Stack
import java.util.EmptyStackException

describe Stack{
  context "empty stack"{
    fact subject.size should be 0
    fact subject.pop throws EmptyStackException
  }
  context "one element"{ 
    before subject.add("element")
    fact subject.size should be 1
    fact "pop decreases size"{
      subject.pop
      subject.size => 0 
    }
    fact "pop removes last element"{
      subject.pop => "element"
      subject.contains("element") => true
    } 
  } 
}

Setting up a development environment

  • If you haven't got an Eclipse installation, download the Xtend Distribution.
  • Install the latest Xtext 2.6.1 release from: http://download.eclipse.org/modeling/tmf/xtext/updates/composite/releases/ (this is not required if you have downloaded the Xtend distribution).
  • Install the latest Jnario snapshot: http://www.jnario.org/updates/snapshot/.
  • Clone the jnario repository:
$ git clone git://github.com/bmwcarit/Jnario.git
  • Start Eclipse and import all projects from jnario/* into your Eclipse workspace
  • Open the target definition tools/org.jnario.target/juno.target and click Set as Target Plattform in the upper right corner
  • If you want to change the grammar import org.eclipse.xtend.core and org.eclipse.xtext.xbase into your workspace via import->Plug-in Development->Plug-ins and Fragments with Import As->Projects with source folder. This is necessary for the workflow to find the custom source classes of Xtend and Xbase.

Build

Build with Maven 3 and Tycho. Run the following command in the repository root:

mvn clean install

Versions

Version
1.0.0
0.7.5
0.7.4
0.7.3
0.7.2
0.7.1
0.7.0
0.6.1
0.6.0
0.5.1
0.5.0
0.4.3
0.4.2
0.4.1
0.4.0
0.3.0
0.2.1
0.2.0
0.1.0