Skip to content

Commit

Permalink
Moved tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dstenroejl committed Dec 18, 2024
1 parent 058482f commit 4402a1d
Show file tree
Hide file tree
Showing 10 changed files with 158 additions and 326 deletions.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
// Copyright 2020 Energinet DataHub A/S
//
// Licensed under the Apache License, Version 2.0 (the "License2");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;

namespace Energinet.DataHub.ProcessManager.Orchestrations.Tests.Fixtures.Extensions;

public static class ServiceCollectionExtensions
{
public static IServiceCollection AddInMemoryConfiguration(
this IServiceCollection services,
Dictionary<string, string?> configurations)
{
var configuration = new ConfigurationBuilder()
.AddInMemoryCollection(configurations)
.Build();

services.AddScoped<IConfiguration>(_ => configuration);

return services;
}
}
Loading

0 comments on commit 4402a1d

Please sign in to comment.