Skip to content
This repository has been archived by the owner on Jul 17, 2023. It is now read-only.

Commit

Permalink
Merge pull request #185 from netspiri/develop/#181
Browse files Browse the repository at this point in the history
Improve Display Name for BOOST_DATA_TEST_CASE instances
  • Loading branch information
guwirth authored Feb 2, 2017
2 parents e4e374f + e50fa08 commit f879026
Show file tree
Hide file tree
Showing 20 changed files with 2,255 additions and 1,861 deletions.
76 changes: 38 additions & 38 deletions BoostTestAdapter/Boost/Results/BoostStandardOutput.cs
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
}
}
Loading

0 comments on commit f879026

Please sign in to comment.