Skip to content

Commit da415e6

Browse files
committed
Use <> style includes in tests
1 parent 21ef2c6 commit da415e6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+77
-77
lines changed

Diff for: test/include/MillisFake.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* INCLUDE
1010
**************************************************************************************/
1111

12-
#include "api/Common.h"
12+
#include <api/Common.h>
1313

1414
/**************************************************************************************
1515
* FUNCTION DECLARATION

Diff for: test/include/PrintMock.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
#include <string>
1313

14-
#include "api/Print.h"
14+
#include <api/Print.h>
1515

1616
/**************************************************************************************
1717
* CLASS DECLARATION

Diff for: test/include/PrintableMock.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
#include <string>
1313

14-
#include "api/Printable.h"
14+
#include <api/Printable.h>
1515

1616
/**************************************************************************************
1717
* CLASS DECLARATION

Diff for: test/include/StreamMock.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
#include <deque>
1313

14-
#include "api/Stream.h"
14+
#include <api/Stream.h>
1515

1616
/**************************************************************************************
1717
* CLASS DECLARATION

Diff for: test/src/CanMsg/test_CanExtendedId.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/CanMsg.h"
11+
#include <api/CanMsg.h>
1212

1313
/**************************************************************************************
1414
* NAMESPACE

Diff for: test/src/CanMsg/test_CanMsg.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/CanMsg.h"
11+
#include <api/CanMsg.h>
1212

1313
/**************************************************************************************
1414
* NAMESPACE

Diff for: test/src/CanMsg/test_CanMsg_CopyCtor.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/CanMsg.h"
11+
#include <api/CanMsg.h>
1212

1313
/**************************************************************************************
1414
* NAMESPACE

Diff for: test/src/CanMsg/test_CanStandardId.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/CanMsg.h"
11+
#include <api/CanMsg.h>
1212

1313
/**************************************************************************************
1414
* NAMESPACE

Diff for: test/src/CanMsg/test_isExtendedId.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/CanMsg.h"
11+
#include <api/CanMsg.h>
1212

1313
/**************************************************************************************
1414
* NAMESPACE

Diff for: test/src/CanMsg/test_isStandardId.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/CanMsg.h"
11+
#include <api/CanMsg.h>
1212

1313
/**************************************************************************************
1414
* NAMESPACE

Diff for: test/src/CanMsg/test_operator_assignment.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/CanMsg.h"
11+
#include <api/CanMsg.h>
1212

1313
/**************************************************************************************
1414
* NAMESPACE

Diff for: test/src/CanMsg/test_printTo.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/CanMsg.h"
11+
#include <api/CanMsg.h>
1212
#include <PrintMock.h>
1313

1414
/**************************************************************************************

Diff for: test/src/CanMsgRingbuffer/test_available.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/CanMsgRingbuffer.h"
11+
#include <api/CanMsgRingbuffer.h>
1212

1313
/**************************************************************************************
1414
* TEST CODE

Diff for: test/src/Common/test_makeWord.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/Common.h"
11+
#include <api/Common.h>
1212

1313
/**************************************************************************************
1414
* TEST CODE

Diff for: test/src/Common/test_map.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/Common.h"
11+
#include <api/Common.h>
1212

1313
/**************************************************************************************
1414
* TEST CODE

Diff for: test/src/Common/test_max.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/Common.h"
11+
#include <api/Common.h>
1212

1313
/**************************************************************************************
1414
* TEST CODE

Diff for: test/src/Common/test_min.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/Common.h"
11+
#include <api/Common.h>
1212

1313
/**************************************************************************************
1414
* TEST CODE

Diff for: test/src/IPAddress/test_IPAddress.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/IPAddress.h"
11+
#include <api/IPAddress.h>
1212

1313
/**************************************************************************************
1414
* TEST CODE

Diff for: test/src/IPAddress/test_IPAddress6.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/IPAddress.h"
11+
#include <api/IPAddress.h>
1212

1313
/**************************************************************************************
1414
* TEST CODE

Diff for: test/src/IPAddress/test_fromString.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/String.h"
12-
#include "api/IPAddress.h"
11+
#include <api/String.h>
12+
#include <api/IPAddress.h>
1313

1414
/**************************************************************************************
1515
* TEST CODE

Diff for: test/src/IPAddress/test_fromString6.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/String.h"
12-
#include "api/IPAddress.h"
11+
#include <api/String.h>
12+
#include <api/IPAddress.h>
1313

1414
/**************************************************************************************
1515
* TEST CODE

Diff for: test/src/IPAddress/test_operator_assignment.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/IPAddress.h"
11+
#include <api/IPAddress.h>
1212

1313
/**************************************************************************************
1414
* TEST CODE

Diff for: test/src/IPAddress/test_operator_comparison.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/IPAddress.h"
11+
#include <api/IPAddress.h>
1212

1313
/**************************************************************************************
1414
* TEST CODE

Diff for: test/src/IPAddress/test_operator_comparison6.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/IPAddress.h"
11+
#include <api/IPAddress.h>
1212

1313
/**************************************************************************************
1414
* TEST CODE

Diff for: test/src/IPAddress/test_operator_parentheses.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/IPAddress.h"
11+
#include <api/IPAddress.h>
1212

1313
/**************************************************************************************
1414
* TEST CODE

Diff for: test/src/IPAddress/test_operator_parentheses6.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/IPAddress.h"
11+
#include <api/IPAddress.h>
1212

1313
/**************************************************************************************
1414
* TEST CODE

Diff for: test/src/IPAddress/test_printTo.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/IPAddress.h"
11+
#include <api/IPAddress.h>
1212
#include <PrintMock.h>
1313

1414
/**************************************************************************************

Diff for: test/src/IPAddress/test_printTo6.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/IPAddress.h"
11+
#include <api/IPAddress.h>
1212
#include <PrintMock.h>
1313

1414
/**************************************************************************************

Diff for: test/src/IPAddress/test_toString.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/String.h"
12-
#include "api/IPAddress.h"
11+
#include <api/String.h>
12+
#include <api/IPAddress.h>
1313

1414
/**************************************************************************************
1515
* TEST CODE

Diff for: test/src/Print/test_availableForWrite.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/Print.h"
11+
#include <api/Print.h>
1212

1313
#include <PrintMock.h>
1414

Diff for: test/src/Print/test_clearWriteError.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/Print.h"
11+
#include <api/Print.h>
1212

1313
#include <PrintMock.h>
1414

Diff for: test/src/Print/test_getWriteError.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/Print.h"
11+
#include <api/Print.h>
1212

1313
#include <PrintMock.h>
1414

Diff for: test/src/Print/test_print.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/Print.h"
11+
#include <api/Print.h>
1212

1313
#include <PrintMock.h>
1414
#include <PrintableMock.h>

Diff for: test/src/Print/test_println.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/Print.h"
11+
#include <api/Print.h>
1212

1313
#include <PrintMock.h>
1414
#include <PrintableMock.h>

Diff for: test/src/Ringbuffer/test_available.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/RingBuffer.h"
11+
#include <api/RingBuffer.h>
1212

1313
/**************************************************************************************
1414
* TEST CODE

Diff for: test/src/Ringbuffer/test_availableForStore.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/RingBuffer.h"
11+
#include <api/RingBuffer.h>
1212

1313
/**************************************************************************************
1414
* TEST CODE

Diff for: test/src/Ringbuffer/test_clear.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/RingBuffer.h"
11+
#include <api/RingBuffer.h>
1212

1313
/**************************************************************************************
1414
* TEST CODE

Diff for: test/src/Ringbuffer/test_isFull.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/RingBuffer.h"
11+
#include <api/RingBuffer.h>
1212

1313
/**************************************************************************************
1414
* TEST CODE

Diff for: test/src/Ringbuffer/test_peek.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/RingBuffer.h"
11+
#include <api/RingBuffer.h>
1212

1313
/**************************************************************************************
1414
* TEST CODE

Diff for: test/src/Ringbuffer/test_read_char.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/RingBuffer.h"
11+
#include <api/RingBuffer.h>
1212

1313
/**************************************************************************************
1414
* TEST CODE

Diff for: test/src/Ringbuffer/test_store_char.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <catch.hpp>
1010

11-
#include "api/RingBuffer.h"
11+
#include <api/RingBuffer.h>
1212

1313
/**************************************************************************************
1414
* TEST CODE

Diff for: test/src/String/StringPrinter.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#pragma once
22

33
#include <catch.hpp>
4-
#include "api/String.h"
4+
#include <api/String.h>
55

66
namespace Catch {
77
/**

Diff for: test/src/String/test_String.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
#include <catch.hpp>
1212

13-
#include "api/String.h"
13+
#include <api/String.h>
1414

1515
#include "StringPrinter.h"
1616

0 commit comments

Comments
 (0)