Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit da415e6

Browse filesBrowse files
committed
Use <> style includes in tests
1 parent 21ef2c6 commit da415e6
Copy full SHA for da415e6

Some content is hidden

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

73 files changed

+77
-77
lines changed

‎test/include/MillisFake.h

Copy file name to clipboardExpand all lines: test/include/MillisFake.h
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/include/PrintMock.h

Copy file name to clipboardExpand all lines: test/include/PrintMock.h
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/include/PrintableMock.h

Copy file name to clipboardExpand all lines: test/include/PrintableMock.h
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/include/StreamMock.h

Copy file name to clipboardExpand all lines: test/include/StreamMock.h
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/CanMsg/test_CanExtendedId.cpp

Copy file name to clipboardExpand all lines: test/src/CanMsg/test_CanExtendedId.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/CanMsg/test_CanMsg.cpp

Copy file name to clipboardExpand all lines: test/src/CanMsg/test_CanMsg.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/CanMsg/test_CanMsg_CopyCtor.cpp

Copy file name to clipboardExpand all lines: test/src/CanMsg/test_CanMsg_CopyCtor.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/CanMsg/test_CanStandardId.cpp

Copy file name to clipboardExpand all lines: test/src/CanMsg/test_CanStandardId.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/CanMsg/test_isExtendedId.cpp

Copy file name to clipboardExpand all lines: test/src/CanMsg/test_isExtendedId.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/CanMsg/test_isStandardId.cpp

Copy file name to clipboardExpand all lines: test/src/CanMsg/test_isStandardId.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/CanMsg/test_operator_assignment.cpp

Copy file name to clipboardExpand all lines: test/src/CanMsg/test_operator_assignment.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/CanMsg/test_printTo.cpp

Copy file name to clipboardExpand all lines: test/src/CanMsg/test_printTo.cpp
+1-1Lines changed: 1 addition & 1 deletion
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
/**************************************************************************************

‎test/src/CanMsgRingbuffer/test_available.cpp

Copy file name to clipboardExpand all lines: test/src/CanMsgRingbuffer/test_available.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/Common/test_makeWord.cpp

Copy file name to clipboardExpand all lines: test/src/Common/test_makeWord.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/Common/test_map.cpp

Copy file name to clipboardExpand all lines: test/src/Common/test_map.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/Common/test_max.cpp

Copy file name to clipboardExpand all lines: test/src/Common/test_max.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/Common/test_min.cpp

Copy file name to clipboardExpand all lines: test/src/Common/test_min.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/IPAddress/test_IPAddress.cpp

Copy file name to clipboardExpand all lines: test/src/IPAddress/test_IPAddress.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/IPAddress/test_IPAddress6.cpp

Copy file name to clipboardExpand all lines: test/src/IPAddress/test_IPAddress6.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/IPAddress/test_fromString.cpp

Copy file name to clipboardExpand all lines: test/src/IPAddress/test_fromString.cpp
+2-2Lines changed: 2 additions & 2 deletions
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

‎test/src/IPAddress/test_fromString6.cpp

Copy file name to clipboardExpand all lines: test/src/IPAddress/test_fromString6.cpp
+2-2Lines changed: 2 additions & 2 deletions
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

‎test/src/IPAddress/test_operator_assignment.cpp

Copy file name to clipboardExpand all lines: test/src/IPAddress/test_operator_assignment.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/IPAddress/test_operator_comparison.cpp

Copy file name to clipboardExpand all lines: test/src/IPAddress/test_operator_comparison.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/IPAddress/test_operator_comparison6.cpp

Copy file name to clipboardExpand all lines: test/src/IPAddress/test_operator_comparison6.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/IPAddress/test_operator_parentheses.cpp

Copy file name to clipboardExpand all lines: test/src/IPAddress/test_operator_parentheses.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/IPAddress/test_operator_parentheses6.cpp

Copy file name to clipboardExpand all lines: test/src/IPAddress/test_operator_parentheses6.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/IPAddress/test_printTo.cpp

Copy file name to clipboardExpand all lines: test/src/IPAddress/test_printTo.cpp
+1-1Lines changed: 1 addition & 1 deletion
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
/**************************************************************************************

‎test/src/IPAddress/test_printTo6.cpp

Copy file name to clipboardExpand all lines: test/src/IPAddress/test_printTo6.cpp
+1-1Lines changed: 1 addition & 1 deletion
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
/**************************************************************************************

‎test/src/IPAddress/test_toString.cpp

Copy file name to clipboardExpand all lines: test/src/IPAddress/test_toString.cpp
+2-2Lines changed: 2 additions & 2 deletions
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

‎test/src/Print/test_availableForWrite.cpp

Copy file name to clipboardExpand all lines: test/src/Print/test_availableForWrite.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/Print/test_clearWriteError.cpp

Copy file name to clipboardExpand all lines: test/src/Print/test_clearWriteError.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/Print/test_getWriteError.cpp

Copy file name to clipboardExpand all lines: test/src/Print/test_getWriteError.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/Print/test_print.cpp

Copy file name to clipboardExpand all lines: test/src/Print/test_print.cpp
+1-1Lines changed: 1 addition & 1 deletion
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>

‎test/src/Print/test_println.cpp

Copy file name to clipboardExpand all lines: test/src/Print/test_println.cpp
+1-1Lines changed: 1 addition & 1 deletion
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>

‎test/src/Ringbuffer/test_available.cpp

Copy file name to clipboardExpand all lines: test/src/Ringbuffer/test_available.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/Ringbuffer/test_availableForStore.cpp

Copy file name to clipboardExpand all lines: test/src/Ringbuffer/test_availableForStore.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/Ringbuffer/test_clear.cpp

Copy file name to clipboardExpand all lines: test/src/Ringbuffer/test_clear.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/Ringbuffer/test_isFull.cpp

Copy file name to clipboardExpand all lines: test/src/Ringbuffer/test_isFull.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/Ringbuffer/test_peek.cpp

Copy file name to clipboardExpand all lines: test/src/Ringbuffer/test_peek.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/Ringbuffer/test_read_char.cpp

Copy file name to clipboardExpand all lines: test/src/Ringbuffer/test_read_char.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/Ringbuffer/test_store_char.cpp

Copy file name to clipboardExpand all lines: test/src/Ringbuffer/test_store_char.cpp
+1-1Lines changed: 1 addition & 1 deletion
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

‎test/src/String/StringPrinter.h

Copy file name to clipboardExpand all lines: test/src/String/StringPrinter.h
+1-1Lines changed: 1 addition & 1 deletion
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
/**

‎test/src/String/test_String.cpp

Copy file name to clipboardExpand all lines: test/src/String/test_String.cpp
+1-1Lines changed: 1 addition & 1 deletion
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.