import static org.junit.Assert.*;
import org.junit.Test;


public class SongCollectionTest
{
	@Test
	public void sizeOfNewCollectionIsZero()
	{
		SongCollection emptyCollection = new SongCollection();
		assertEquals(0, emptyCollection.size());
	}
}
