Skip to content

Commit

Permalink
chore: Refactor to fit new structure
Browse files Browse the repository at this point in the history
  • Loading branch information
thygesteffensen committed Jul 29, 2024
1 parent e0b6d65 commit 0889b7f
Show file tree
Hide file tree
Showing 128 changed files with 82 additions and 322 deletions.
224 changes: 0 additions & 224 deletions ReadMe.md

This file was deleted.

Empty file added samples/.gitkeep
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@
using Parser;
using Parser.ExpressionParser;
using Parser.FlowParser.ActionExecutors;
using Parser.FlowParser.ActionExecutors.Implementations;
using Parser.FlowParser.ActionExecutors.Implementations.ControlActions;

namespace Test.ActionTests
namespace PowerAutomateMockUp.Tests.ActionTests
{
[TestFixture]
public class DoUntilActionExecutorTest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@
using Parser;
using Parser.ExpressionParser;
using Parser.FlowParser.ActionExecutors;
using Parser.FlowParser.ActionExecutors.Implementations;
using Parser.FlowParser.ActionExecutors.Implementations.ControlActions;

namespace Test.ActionTests
namespace PowerAutomateMockUp.Tests.ActionTests
{
[TestFixture]
public class ForEachActionExecutorTest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
using Parser.FlowParser.ActionExecutors;
using Parser.FlowParser.ActionExecutors.Implementations.ControlActions;

namespace Test.ActionTests
namespace PowerAutomateMockUp.Tests.ActionTests
{
[TestFixture]
public class IfActionExecutorTest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using Parser;
using Parser.FlowParser.ActionExecutors;

namespace Test.ActionTests
namespace PowerAutomateMockUp.Tests.ActionTests
{
[TestFixture]
public class ScopeActionExecutorTest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@
using Parser;
using Parser.ExpressionParser;
using Parser.FlowParser.ActionExecutors;
using Parser.FlowParser.ActionExecutors.Implementations;
using Parser.FlowParser.ActionExecutors.Implementations.ControlActions;

namespace Test.ActionTests
namespace PowerAutomateMockUp.Tests.ActionTests
{
[TestFixture]
public class SwitchActionTest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using Parser.FlowParser.ActionExecutors;
using Parser.FlowParser.ActionExecutors.Implementations.ControlActions;

namespace Test.ActionTests
namespace PowerAutomateMockUp.Tests.ActionTests
{
[TestFixture]
public class TerminateActionTest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using Parser.ExpressionParser;
using Parser.ExpressionParser.Functions.Implementations.CollectionFunctions;

namespace Test.Expression
namespace PowerAutomateMockUp.Tests.Expressions
{
public class CollectionFunctionTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using Parser.ExpressionParser;
using Parser.ExpressionParser.Functions.Implementations.ConversionFunctions;

namespace Test.Expression
namespace PowerAutomateMockUp.Tests.Expressions
{
public class ConversionFunctionTest
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using Parser.ExpressionParser;
using Parser.ExpressionParser.Functions.Base;

namespace Test.Expression
namespace PowerAutomateMockUp.Tests.Expressions
{
[TestFixture]
public class GenericExpressionTest
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Parser.ExpressionParser;
using Parser.ExpressionParser.Functions.Implementations.LogicalComparisonFunctions;

namespace Test.Expression
namespace PowerAutomateMockUp.Tests.Expressions
{
public class LogicalFunctionTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Parser.ExpressionParser;
using Parser.ExpressionParser.Functions.Math;

namespace Test.Expression
namespace PowerAutomateMockUp.Tests.Expressions
{
public class MathFunctionTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using Parser.ExpressionParser;
using Parser.ExpressionParser.Functions.Implementations.StringFunctions;

namespace Test.Expression
namespace PowerAutomateMockUp.Tests.Expressions
{
[TestFixture]
public class StringFunctionTests
Expand Down Expand Up @@ -49,7 +49,7 @@ public class StringFunctionTests
new FormatNumberFunction(),
"formatNumber",
new[] {new ValueContainer(17.35), new ValueContainer("C2"), new ValueContainer("is-is")},
new ValueContainer("17,35 kr")
new ValueContainer("17,35 ISK")
},
new object[]
{
Expand All @@ -73,13 +73,6 @@ public class StringFunctionTests
new ValueContainer(0)
},
new object[]
{
new LastIndexOfFunction(),
"lastIndexOf",
new[] {new ValueContainer("Hey there"), new ValueContainer("e")},
new ValueContainer(8)
},
new object[]
{
new LastIndexOfFunction(),
"lastIndexOf",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 0889b7f

Please sign in to comment.