Skip to content

Commit

Permalink
Prepared new release
Browse files Browse the repository at this point in the history
  • Loading branch information
gokTyBalD authored and gokTyBalD committed Jun 2, 2014
1 parent d356bce commit 173ed93
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions ObjectFiller.Test/ObjectFillerTest.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using ObjectFiller.Test.TestPoco.Person;
using Tynamix.ObjectFiller;
Expand All @@ -25,5 +26,15 @@ public void TestFillPerson()

Person pFilled = filler.Fill(p);
}

[TestMethod]
public void CreateMultipleInstances()
{
Filler<LibraryFillingTest.Person> filler = new Filler<LibraryFillingTest.Person>();
IEnumerable<LibraryFillingTest.Person> pList = filler.Create(10);

Assert.IsNotNull(pList);
Assert.AreEqual(10, pList.Count());
}
}
}
4 changes: 2 additions & 2 deletions ObjectFiller/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
// übernehmen, indem Sie "*" eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.2.3.0")]
[assembly: AssemblyFileVersion("1.2.3.0")]
[assembly: AssemblyVersion("1.2.4.0")]
[assembly: AssemblyFileVersion("1.2.4.0")]
Binary file removed Tynamix.ObjectFiller.1.2.3.nupkg
Binary file not shown.
Binary file added Tynamix.ObjectFiller.1.2.4.nupkg
Binary file not shown.

0 comments on commit 173ed93

Please sign in to comment.