8000 Use <> style includes in tests · arduino/ArduinoCore-API@da415e6 · GitHub
[go: up one dir, main page]

Skip to content
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 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

test/include/MillisFake.h

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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