blob: 60fc54e10e707be5bf288efb4bcf39d882499eb4 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2011 GitHub Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Kevin Sawicki (GitHub Inc.) - initial API and implementation
*****************************************************************************/
package org.eclipse.egit.github.core.tests;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import org.eclipse.egit.github.core.Language;
import org.junit.Test;
/**
* Unit tests of {@link Language}
*/
public class LanguageTest {
/**
* Test languages
*/
@Test
public void languages() {
assertNotNull(Language.values());
assertTrue(Language.values().length > 0);
for (Language lang : Language.values()) {
assertNotNull(lang);
assertNotNull(Language.valueOf(lang.name()));
assertNotNull(lang.getValue());
assertFalse(lang.getValue().length() == 0);
}
}
}