blob: 284c20f20b4803b13c64c9168f088c66ad664664 [file] [log] [blame]
/*
* Copyright (c) 2011 Google 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
*/
package com.google.eclipse.protobuf.grammar;
import static org.hamcrest.core.IsEqual.equalTo;
import static org.junit.Assert.assertThat;
import org.junit.Test;
/**
* Tests for <code>{@link Syntaxes#proto2()}</code>.
*
* @author alruiz@google.com (Alex Ruiz)
*/
public class Syntaxes_proto2_Test {
@Test public void should_return_proto2() {
assertThat(Syntaxes.proto2(), equalTo("proto2"));
}
}