@MrWiggles
as t0rx told you are lucky to have QA to write stories/scenarios.
coming to your question:
Behaviour-Driven Development encourages you to start defining the stories via scenarios that express the desired behavior in a textual format.
JBehave Stories you can run by configuring in Maven (pom.xml).
You can make a folder for storing your story files in your package structure, like below:
Your_Project
|
|
|--Source_Code
|
|--Stories
|
|--Testing
|
*pom.xml
By configuring your stories in maven, every time you build project it will give result with succeeded and failed stories/scenarios results.
QA will update the scenarios in the folder Stories, and the developer will implement the scenarios step by step by omitting existing steps (which are already developed and came in other scenarios).
QA simply run the scenario/story and he will find out the result in a textual (understandable) format.
Like below:

Behaviour-Driven Development in test levels.

Some of the JBehave features concentrate on easy organizing.
- Annotation-based configuration and Steps class specifications
- Dependency Injection support allowing both configuration and Steps instances composed via your favourite container (
Guice, PicoContainer, Spring).
- Extensible story reporting: outputs stories executed in different human-readable file-based formats (
HTML, TXT, XML). Fully style-able view.
- Auto-generation of pending steps so the build is not broken by a missing step, but has option to configure breaking build for pending steps.
- Localisation of user stories, allowing them to be written in any language.
- IDE integration: stories can be run as
JUnit tests or other annotation-based unit test frameworks, providing easy integration with your favourite IDE.
- Ant integration: allows stories to be run via Ant task
- Maven integration: allows stories to be run via Maven plugin at given build phase