*/
public class BDDTests extends MageAPI {
@Test
public void testNonExistingCard() throws Exception {
Expect.expect(CardNotFoundException.class, new Command() {
@Override
public void execute() throws Exception {
Given.I.have.a.card("Super Puper Card");
And.phase.is("Precombat Main", mine);
When.I.play("Super Puper Card");