M test/Document.cc => test/Document.cc +1 -1
@@ 1,4 1,4 @@
-#include "Document.hpp"
+#include "Document.h"
void test_inserted_text() {
Text text;
M test/Document.h => test/Document.h +2 -2
@@ 1,6 1,6 @@
#pragma once
-#include "TestUtils.hpp"
-#include "../src/Document.hpp"
+#include "TestUtils.h"
+#include "../src/Document.h"
void test_inserted_text();
void test_data_erasing();
M test/Line.cc => test/Line.cc +2 -2
@@ 1,6 1,6 @@
-#include "Line.hpp"
+#include "Line.h"
-#include "../src/Document.hpp"
+#include "../src/Document.h"
void test_line_insert() {
Text text;
M test/Line.h => test/Line.h +2 -2
@@ 1,6 1,6 @@
#pragma once
-#include "TestUtils.hpp"
-#include "../src/Line.hpp"
+#include "TestUtils.h"
+#include "../src/Line.h"
void test_line_insert();
void test_line_count();
M test/Syntax.cc => test/Syntax.cc +4 -4
@@ 1,8 1,8 @@
-#include "Syntax.hpp"
+#include "Syntax.h"
-#include "../src/Document.hpp"
-#include "../src/Line.hpp"
-#include "../src/Section.hpp"
+#include "../src/Document.h"
+#include "../src/Line.h"
+#include "../src/Section.h"
#include <stdio.h>
M test/Syntax.h => test/Syntax.h +2 -2
@@ 1,5 1,5 @@
#pragma once
-#include "TestUtils.hpp"
-#include "../src/Syntax.hpp"
+#include "TestUtils.h"
+#include "../src/Syntax.h"
void test_syntax_inline_matches();
M test/TestUtils.h => test/TestUtils.h +2 -2
@@ 5,8 5,8 @@
#define TEST_NO_MAIN
#include "acutest.h"
-#include "../src/Document.hpp"
-#include "../src/Line.hpp"
+#include "../src/Document.h"
+#include "../src/Line.h"
/// TestLine doesn't require a Text document to be created beforehand'
class TestLine : public Line {
M test/tests.cc => test/tests.cc +3 -3
@@ 1,8 1,8 @@
#include "acutest.h"
-#include "Document.hpp"
-#include "Line.hpp"
-#include "Syntax.hpp"
+#include "Document.h"
+#include "Line.h"
+#include "Syntax.h"
TEST_LIST = {
// Document.hpp