Skip to content

Commit a606c05

Browse files
committed
closes #3
1 parent 3b79cd9 commit a606c05

30 files changed

+48
-34
lines changed

ExtentReports.Tests/Core/BddAttributesTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using NUnit.Framework;
22

3+
using AventStack.ExtentReports;
34
using AventStack.ExtentReports.Gherkin.Model;
45

56
namespace AventStack.ExtentReports.Tests.APITests
File renamed without changes.

ExtentReports/Core/ExtentObservable.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Collections.Generic;
66
using System.Linq;
77

8-
namespace AventStack.ExtentReports
8+
namespace AventStack.ExtentReports.Core
99
{
1010
public abstract class ExtentObservable
1111
{

ExtentReports/Core/GherkinKeywordNotFoundException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace AventStack.ExtentReports
3+
namespace AventStack.ExtentReports.Core
44
{
55
[Serializable]
66
internal class GherkinKeywordNotFoundException : Exception

ExtentReports/Core/IAnalysisStrategyService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace AventStack.ExtentReports
1+
namespace AventStack.ExtentReports.Core
22
{
33
public interface IAnalysisStrategyService
44
{

ExtentReports/Core/IExtentReporter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace AventStack.ExtentReports
1+
namespace AventStack.ExtentReports.Core
22
{
33
public interface IExtentReporter : ITestListener, IAnalysisStrategyService
44
{

ExtentReports/Core/IMediaContainer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace AventStack.ExtentReports
1+
namespace AventStack.ExtentReports.Core
22
{
33
public interface IMediaContainer<T>
44
{

ExtentReports/Core/IReportAggregatesListener.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using System.Collections.Generic;
55

6-
namespace ExtentReports
6+
namespace AventStack.ExtentReports.Core
77
{
88
public interface IReportAggregatesListener
99
{

ExtentReports/Core/IReportService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace AventStack.ExtentReports
1+
namespace AventStack.ExtentReports.Core
22
{
33
public interface IReportService
44
{

ExtentReports/Core/IRunResult.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace AventStack.ExtentReports
1+
namespace AventStack.ExtentReports.Core
22
{
33
/// <summary>
44
/// Marker interface for execution's result providing a Status

0 commit comments

Comments
 (0)