Skip to content

Commit 9ea9ef9

Browse files
author
Charity Kathure
committed
boost json parser
Signed-off-by: Charity Kathure <[email protected]>
1 parent fb712c3 commit 9ea9ef9

15 files changed

+400
-2554
lines changed

LogMonitor/LogMonitorTests/ConfigFileParserTests.cpp

Lines changed: 0 additions & 1759 deletions
This file was deleted.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
//
2+
// Copyright (c) Microsoft Corporation.
3+
// Licensed under the MIT license.
4+
//
5+
6+
#include "pch.h"
7+
8+
9+
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
10+
11+
#define BUFFER_SIZE 65536
12+
13+
namespace UtilityTests
14+
{
15+
///
16+
/// Tests of Utility class methods.
17+
///
18+
TEST_CLASS(JsonProcessorTests)
19+
{
20+
public:
21+
22+
};
23+
}

LogMonitor/LogMonitorTests/LogMonitorTests.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
#include "pch.h"
77

8-
#include "../src/LogMonitor/ConfigFileParser.cpp"
98
#include "../src/LogMonitor/EtwMonitor.cpp"
109
#include "../src/LogMonitor/EventMonitor.cpp"
1110
#include "../src/LogMonitor/JsonFileParser.cpp"

LogMonitor/LogMonitorTests/LogMonitorTests.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@
166166
<ItemGroup>
167167
<ClCompile Include="EtwMonitorTests.cpp" />
168168
<ClCompile Include="EventMonitorTests.cpp" />
169+
<ClCompile Include="JsonProcessorTests.cpp" />
169170
<ClCompile Include="LogFileMonitorTests.cpp" />
170171
<ClCompile Include="LogMonitorTests.cpp" />
171172
<ClCompile Include="pch.cpp">
@@ -174,7 +175,6 @@
174175
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
175176
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader>
176177
</ClCompile>
177-
<ClCompile Include="ConfigFileParserTests.cpp" />
178178
<ClCompile Include="Utility.cpp" />
179179
<ClCompile Include="UtilityTests.cpp" />
180180
</ItemGroup>

LogMonitor/LogMonitorTests/LogMonitorTests.vcxproj.filters

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@
2121
<ClCompile Include="pch.cpp">
2222
<Filter>Source Files</Filter>
2323
</ClCompile>
24-
<ClCompile Include="ConfigFileParserTests.cpp">
25-
<Filter>Source Files</Filter>
26-
</ClCompile>
2724
<ClCompile Include="LogFileMonitorTests.cpp">
2825
<Filter>Source Files</Filter>
2926
</ClCompile>
@@ -38,6 +35,9 @@
3835
</ClCompile>
3936
<ClCompile Include="UtilityTests.cpp">
4037
<Filter>Source Files</Filter>
38+
</ClCompile>
39+
<ClCompile Include="JsonProcessorTests.cpp">
40+
<Filter>Source Files</Filter>
4141
</ClCompile>
4242
</ItemGroup>
4343
<ItemGroup>

0 commit comments

Comments
 (0)