/* * Copyright (c) 2014 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.bugs; import static com.google.eclipse.protobuf.junit.core.UnitTestModule.unitTestModule; import static com.google.eclipse.protobuf.junit.core.XtextRule.overrideRuntimeModuleWith; import static org.junit.Assert.assertTrue; import com.google.eclipse.protobuf.junit.core.XtextRule; import com.google.eclipse.protobuf.validation.ProtobufJavaValidator; import com.google.inject.Inject; import org.eclipse.emf.common.util.BasicDiagnostic; import org.junit.Rule; import org.junit.Test; /** * Test that the parser correctly handles proto3 syntax. */ public class Proto3SyntaxTest { @Rule public XtextRule xtext = overrideRuntimeModuleWith(unitTestModule()); @Inject private ProtobufJavaValidator validator; // syntax = "proto3"; // // message Foo { // optional string bar = 1; // } @Test public void shouldAllowProto3Syntax() { boolean isValid = validator.validate(xtext.root(), new BasicDiagnostic(), null); assertTrue(isValid); } }