This repository has been archived by the owner on Jul 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #185 from netspiri/develop/#181
Improve Display Name for BOOST_DATA_TEST_CASE instances
- Loading branch information
Showing
20 changed files
with
2,255 additions
and
1,861 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,41 @@ | ||
// (C) Copyright ETAS 2015. | ||
// Distributed under the Boost Software License, Version 1.0. | ||
// (See accompanying file LICENSE_1_0.txt or copy at | ||
// http://www.boost.org/LICENSE_1_0.txt) | ||
|
||
using System.Collections.Generic; | ||
// (C) Copyright ETAS 2015. | ||
// Distributed under the Boost Software License, Version 1.0. | ||
// (See accompanying file LICENSE_1_0.txt or copy at | ||
// http://www.boost.org/LICENSE_1_0.txt) | ||
|
||
using System.Collections.Generic; | ||
using BoostTestAdapter.Boost.Results.LogEntryTypes; | ||
|
||
namespace BoostTestAdapter.Boost.Results | ||
{ | ||
/// <summary> | ||
/// Standard Output as emitted by Boost Test executables | ||
/// </summary> | ||
public class BoostStandardOutput : BoostConsoleOutputBase | ||
{ | ||
#region Constructors | ||
|
||
/// <summary> | ||
/// Constructor accepting a path to the external file | ||
/// </summary> | ||
/// <param name="target">The destination result collection. Possibly used for result aggregation.</param> | ||
public BoostStandardOutput(IDictionary<string, TestResult> target) | ||
: base(target) | ||
{ | ||
} | ||
|
||
#endregion Constructors | ||
|
||
#region BoostConsoleOutputBase | ||
|
||
protected override LogEntry CreateLogEntry(string message) | ||
{ | ||
return new LogEntryStandardOutputMessage() | ||
{ | ||
Detail = message | ||
}; | ||
} | ||
|
||
#endregion BoostConsoleOutputBase | ||
} | ||
namespace BoostTestAdapter.Boost.Results | ||
{ | ||
/// <summary> | ||
/// Standard Output as emitted by Boost Test executables | ||
/// </summary> | ||
public class BoostStandardOutput : BoostConsoleOutputBase | ||
{ | ||
#region Constructors | ||
|
||
/// <summary> | ||
/// Constructor accepting a path to the external file | ||
/// </summary> | ||
/// <param name="target">The destination result collection. Possibly used for result aggregation.</param> | ||
public BoostStandardOutput(IDictionary<string, TestResult> target) | ||
: base(target) | ||
{ | ||
} | ||
|
||
#endregion Constructors | ||
|
||
#region BoostConsoleOutputBase | ||
|
||
protected override LogEntry CreateLogEntry(string message) | ||
{ | ||
return new LogEntryStandardOutputMessage() | ||
{ | ||
Detail = message | ||
}; | ||
} | ||
|
||
#endregion BoostConsoleOutputBase | ||
} | ||
} |
Oops, something went wrong.