Index: trunk/eCard/eCardMVC/adMoto.Payments.Test/Utils/TestDataHelperTests.cs
===================================================================
--- trunk/eCard/eCardMVC/adMoto.Payments.Test/Web/TestMethods.cs (revision 971)
+++ trunk/eCard/eCardMVC/adMoto.Payments.Test/Utils/TestDataHelperTests.cs (revision 982)
@@ -1,12 +1,13 @@
 ﻿using adMoto.Payments.Core;
 using adMoto.Payments.Core.Data;
+using adMoto.Payments.Test.Fakes;
 using NUnit.Framework;
 
-namespace adMoto.Payments.Test.Web
+namespace adMoto.Payments.Test.Utils
 {
     [TestFixture]
-    public class TestMethods
+    public class TestDataHelperTests
     {
-        private readonly Function _function = new Function();
+        private readonly TestDataHelper _testDataHelper = new TestDataHelper();
 
         [Test]
@@ -17,10 +18,8 @@
             var vPlatnosciEcardRepository = new Repository<Invoice>(fake);
 
-            var platnosc = _function.CreateInvoice(123, "nip", "", 0, 0);
+            var platnosc = _testDataHelper.CreateInvoice(123, "nip", "", 0, 0);
             vPlatnosciEcardRepository.Insert(platnosc);
 
-            System.Diagnostics.Debug.WriteLine("rep.Count: " + vPlatnosciEcardRepository.Count());
             var pl = vPlatnosciEcardRepository.FindOne(123);
-            System.Diagnostics.Debug.WriteLine("Wartosc nip ma byc 'nip'. Jest " + pl.nip);
             Assert.That(pl.nip, Is.EqualTo("nip"));
         }
