blob: ee420c14312966f593d5de504c13cc493071263e [file] [log] [blame]
/*
* Copyright (c) 2013 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 the parser correctly handles """...""" template strings
*/
public class SupportTripleQuotes {
@Rule public XtextRule xtext = overrideRuntimeModuleWith(unitTestModule());
@Inject private ProtobufJavaValidator validator;
// syntax = "proto2";
//
// package test;
//
// extend google.protobuf.MessageOptions {
// optional string value = 16662875;
// }
//
// message TestMessage {
// option (value) = """test""";
// }
@Test public void should_allow_template_quotes() {
boolean isValid = validator.validate(xtext.root(), new BasicDiagnostic(), null);
assertTrue(isValid);
}
}