Ensure TestFixture attribute added

This commit is contained in:
Aaron Yarborough 2020-09-09 19:26:28 +02:00
parent a5cc3603c1
commit b33e729547
4 changed files with 3 additions and 4 deletions

View file

@ -3,6 +3,7 @@ using NUnit.Framework;
namespace GraalGmapGeneratorTests namespace GraalGmapGeneratorTests
{ {
[TestFixture]
public class GmapBuilderTests public class GmapBuilderTests
{ {
GmapBuilder gmapBuilder; GmapBuilder gmapBuilder;

View file

@ -8,6 +8,7 @@ using System.Text.RegularExpressions;
namespace GraalGmapGeneratorTests namespace GraalGmapGeneratorTests
{ {
[TestFixture]
public class GmapContentGeneratorTests public class GmapContentGeneratorTests
{ {
[Test] [Test]

View file

@ -1,6 +1,4 @@
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq;
using GraalGmapGenerator; using GraalGmapGenerator;
using NUnit.Framework; using NUnit.Framework;
@ -72,7 +70,5 @@ namespace GraalGmapGeneratorTests
{ {
Assert.True(GmapPropertyValidators.IsValidDirectory(validPath)); Assert.True(GmapPropertyValidators.IsValidDirectory(validPath));
} }
} }
} }

View file

@ -3,6 +3,7 @@ using NUnit.Framework;
namespace GraalGmapGeneratorTests namespace GraalGmapGeneratorTests
{ {
[TestFixture]
public class GmapTests public class GmapTests
{ {
[Test] [Test]