Skip to content

Commit

Permalink
Clearify ambigous reference in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcel Sandermann committed Dec 15, 2021
1 parent 593513f commit 016025e
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/Tests/Moryx.ClientFramework.Tests/AttributeTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@
// Licensed under the Apache License, Version 2.0

using System;
using System.Collections.Generic;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using Moryx.Container;
using NUnit.Framework;

Expand All @@ -15,9 +12,9 @@ namespace Moryx.ClientFramework.Tests
public class AttributeTests
{
[Test]
[TestCase(typeof(ClientModuleAttribute), LifeCycle.Singleton, typeof(IClientModule), AttributeTargets.Class)]
[TestCase(typeof(ModuleShellAttribute), LifeCycle.Singleton, typeof(IClientModule), AttributeTargets.Class)]
public void ClientModuleAttributeTest(Type attribute, LifeCycle lifeCycle, Type service, AttributeTargets target)
[TestCase(typeof(ClientModuleAttribute), Container.LifeCycle.Singleton, typeof(IClientModule), AttributeTargets.Class)]
[TestCase(typeof(ModuleShellAttribute), Container.LifeCycle.Singleton, typeof(IClientModule), AttributeTargets.Class)]
public void ClientModuleAttributeTest(Type attribute, Container.LifeCycle lifeCycle, Type service, AttributeTargets target)
{
const string name = "HelloWorld";

Expand Down

0 comments on commit 016025e

Please sign in to comment.