Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any YAML based fixture loader for Java? [closed]

I've used DbUnit but after playing about with the Play Framework recently I've found it's Fixtures.load(String yamlFilename) really useful. Anyone know of a similar tool that can be used with any Java project?

like image 435
Adrian Avatar asked May 04 '10 20:05

Adrian


2 Answers

You may be interested in my project, Fixy, which creates fixtures and loads them into a JPA context for querying. It supports includes, package declaration, and processors. It's very similar to Play's fixture mechanism.

like image 82
SamBeran Avatar answered Nov 01 '22 19:11

SamBeran


Fixjures: https://code.google.com/archive/p/fixjures/

2.0-rc1 includes YAML support. The library supports POJOs and interface proxies.

like image 28
Steve Reed Avatar answered Nov 01 '22 20:11

Steve Reed