Skip to content

Commit f1fd08d

Browse files
committed
missing mock implementation of SetOut
1 parent 96239ea commit f1fd08d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

libraries/tests/AWS.Lambda.Powertools.Logging.Tests/Utilities/SystemWrapperMock.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* permissions and limitations under the License.
1414
*/
1515

16+
using System.IO;
1617
using AWS.Lambda.Powertools.Common;
1718

1819
namespace AWS.Lambda.Powertools.Logging.Tests.Utilities;
@@ -59,4 +60,9 @@ public void SetEnvironmentVariable(string variable, string value)
5960
public void SetExecutionEnvironment<T>(T type)
6061
{
6162
}
63+
64+
public void SetOut(TextWriter writeTo)
65+
{
66+
67+
}
6268
}

0 commit comments

Comments
 (0)