Skip to content

Commit

Permalink
fixed test dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabricio Catae committed Mar 7, 2017
1 parent 5f7eefe commit da66f45
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public static string ReadFile(string filename)

try
{
reader = File.OpenText(filename);
reader = System.IO.File.OpenText(filename);
return reader.ReadToEnd();
}
catch(FileNotFoundException)
Expand All @@ -70,7 +70,7 @@ public static string ReadFile(string filename)

public static void WriteFile(string filename, string text)
{
using (var writer = File.CreateText(filename))
using (var writer = System.IO.File.CreateText(filename))
{
writer.Write(text);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Collections.Generic;
using Arda.Kanban.Models;
using Arda.Kanban.Repositories;
using Arda.Common.ViewModels.Main;
using Arda.Kanban.ViewModels;

namespace IntegrationTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Collections.Generic;
using Arda.Kanban.Models;
using Arda.Kanban.Repositories;
using Arda.Common.ViewModels.Main;
using Arda.Kanban.ViewModels;

namespace IntegrationTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Collections.Generic;
using Arda.Kanban.Models;
using Arda.Kanban.Repositories;
using Arda.Common.ViewModels.Main;
using Arda.Kanban.ViewModels;

namespace IntegrationTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Threading.Tasks;
using Arda.Kanban.Models;
using Arda.Kanban.Repositories;
using Arda.Common.ViewModels.Main;
using Arda.Kanban.ViewModels;

namespace IntegrationTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Collections.Generic;
using Arda.Kanban.Models;
using Arda.Kanban.Repositories;
using Arda.Common.ViewModels.Main;
using Arda.Kanban.ViewModels;

namespace IntegrationTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Collections.Generic;
using Arda.Kanban.Models;
using Arda.Kanban.Repositories;
using Arda.Common.ViewModels.Kanban;
using Arda.Kanban.ViewModels;

namespace IntegrationTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Collections.Generic;
using Arda.Kanban.Models;
using Arda.Kanban.Repositories;
using Arda.Common.ViewModels.Main;
using Arda.Kanban.ViewModels;

namespace IntegrationTests
{
Expand Down
2 changes: 1 addition & 1 deletion test/IntegrationTests.Arda.Kanban.Repositories/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Model está definido como:

Diferente dos demais modelos que estão no Main:

using Arda.Common.ViewModels.Main;
using Arda.Kanban.ViewModels;



Expand Down

0 comments on commit da66f45

Please sign in to comment.