package org.elixir_lang.parser_definition; /** * charListHeredoc or stringHeredoc is invalid to the right of `.`, so unlike in * {@link MatchedDotOperationParsingTestcase}, this tests only when charListHeredoc or stringHeredoc is left of `.` and * the right operand varies based on the test name. */ public class HeredocDotOperationParsingTestcase extends ParsingTestCase { /* * matchedDotOperand */ public void testAtNonNumericOperation() { assertParsedAndQuotedCorrectly(); } public void testMatchedCallOperation() { assertParsedAndQuotedCorrectly(); } public void testVariable() { assertParsedAndQuotedCorrectly(); } /* * accessExpression */ public void testAtNumericOperation() { assertParsedAndQuotedCorrectly(); } public void testCaptureNumericOperation() { assertParsedAndQuotedCorrectly(); } public void testUnaryNumericOperation() { assertParsedAndQuotedCorrectly(); } public void testEmptyBlock() { assertParsedWithErrors(); } public void testList() { assertParsedWithErrors(); } public void testSigil() { assertParsedWithErrors(); } public void testAtomKeyword() { assertParsedAndQuotedCorrectly(); } public void testAtom() { assertParsedWithErrors(); } public void testAlias() { assertParsedAndQuotedCorrectly(); } /* * numeric */ public void testCharToken() { assertParsedWithErrors(); } public void testBinaryWholeNumber() { assertParsedWithErrors(); } public void testHexadecimalWholeNumber() { assertParsedWithErrors(); } public void testOctalWholeNumber() { assertParsedWithErrors(); } public void testUnknownBaseWholeNumber() { assertParsedWithErrors(); } public void testDecimalFloat() { assertParsedWithErrors(); } public void testDecimalWholeNumber() { assertParsedWithErrors(); } public void testStringLine() { assertParsedAndQuotedCorrectly(); } public void testCharListLine() { assertParsedAndQuotedCorrectly(); } @Override protected String getTestDataPath() { return super.getTestDataPath() + "/heredoc_dot_operation_parsing_test_case"; } @Override protected void setUp() throws Exception { super.setUp(); registerProjectFileIndex(); } }