Package com.googlecode.memwords.domain

Examples of com.googlecode.memwords.domain.Card


    }

    @Test
    public void testDeleteCard() {
        CardDetails cardDetails = new CardDetails(null, "name", "login", "password", "url", "iconUrl", "note");
        Card card = impl.createCard(userId, cardDetails, encryptionKey);
        assertNotNull(impl.getCardDetails(card.getId(), encryptionKey));
        impl.deleteCard(card.getId());
        assertNull(impl.getCardDetails(card.getId(), encryptionKey));
    }
View Full Code Here

TOP

Related Classes of com.googlecode.memwords.domain.Card

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.