Package org.cedj.geekseek.domain.attachment.test

Source Code of org.cedj.geekseek.domain.attachment.test.TestUtils

package org.cedj.geekseek.domain.attachment.test;

import java.net.MalformedURLException;
import java.net.URL;

import org.cedj.geekseek.domain.attachment.model.Attachment;

public final class TestUtils {

    private TestUtils() {}

    public static Attachment createAttachment() {
        try {
        return new Attachment(
            "Test Attachment",
            "text/plain",
            new URL("http://geekseek.org"));
        } catch(MalformedURLException e) {
            throw new RuntimeException(e);
        }
    }
}
TOP

Related Classes of org.cedj.geekseek.domain.attachment.test.TestUtils

TOP
Copyright © 2018 www.massapi.com. 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.