Package br.com.mutley

Source Code of br.com.mutley.CoderTest

package br.com.mutley;

import org.junit.Assert;
import org.junit.Test;

import br.com.mutley.data.Badge;
import br.com.mutley.data.Coder;

public class CoderTest extends Assert {

  @Test
  public void itShouldReturnEmptyBadgeWhenBadgeWasNotFound() {
    Coder coder = new Coder();
    Badge badge = coder.getBadge("test");

    assertNull(badge.getBadge());
    assertNull(badge.getCreated());
    assertNull(badge.getDescription());
    assertNull(badge.getName());
  }

  @Test(expected = IllegalArgumentException.class)
  public void itShouldValidateGetBadgeInput() {
    Coder coder = new Coder();

    coder.getBadge(null);
  }

}
TOP

Related Classes of br.com.mutley.CoderTest

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.