-
Notifications
You must be signed in to change notification settings - Fork 170
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Marketing Text AI Tests Added #1504
base: main
Are you sure you want to change the base?
Changes from 1 commit
c19b91f
b9c8b78
f4ae6f7
2b1ed5f
9f1a6a7
7bc9f6b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,17 +5,17 @@ | |
|
||
namespace System.Test.EntityText; | ||
|
||
using System.TestTools.AITestToolkit; | ||
Check failure on line 8 in src/System Application/Test/EntityText/src/MktTextAccuracyAIT.Codeunit.al GitHub Actions / Build System Application Tests (Default) / System Application Tests (Default)
Check failure on line 8 in src/System Application/Test/EntityText/src/MktTextAccuracyAIT.Codeunit.al GitHub Actions / Build System Application Tests (Default) / System Application Tests (Default)
Check failure on line 8 in src/System Application/Test/EntityText/src/MktTextAccuracyAIT.Codeunit.al GitHub Actions / Build System Application Tests (Clean) / System Application Tests (Clean)
|
||
using System.Text; | ||
|
||
codeunit 134640 "Mkt Text Accuracy BCCT" | ||
codeunit 134640 "Mkt Text Accuracy AIT" | ||
{ | ||
Subtype = Test; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Check if TestPermissions needs to be set to disabled. |
||
|
||
[Test] | ||
procedure TaglineParagraphInspiring() | ||
var | ||
AITestContext: Codeunit "AIT Test Context"; | ||
Check failure on line 18 in src/System Application/Test/EntityText/src/MktTextAccuracyAIT.Codeunit.al GitHub Actions / Build System Application Tests (Default) / System Application Tests (Default)
|
||
EntityTextCod: Codeunit "Entity Text"; | ||
Facts: Dictionary of [Text, Text]; | ||
Format: Enum "Entity Text Format"; | ||
|
@@ -34,7 +34,7 @@ | |
[Test] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Tests are missing comments: Did we stop using these? |
||
procedure TaglineParagraphFormal() | ||
var | ||
AITestContext: Codeunit "AIT Test Context"; | ||
Check failure on line 37 in src/System Application/Test/EntityText/src/MktTextAccuracyAIT.Codeunit.al GitHub Actions / Build System Application Tests (Default) / System Application Tests (Default)
|
||
EntityTextCod: Codeunit "Entity Text"; | ||
Facts: Dictionary of [Text, Text]; | ||
Format: Enum "Entity Text Format"; | ||
|
@@ -53,7 +53,7 @@ | |
[Test] | ||
procedure TaglineParagraphCreative() | ||
var | ||
AITestContext: Codeunit "AIT Test Context"; | ||
Check failure on line 56 in src/System Application/Test/EntityText/src/MktTextAccuracyAIT.Codeunit.al GitHub Actions / Build System Application Tests (Default) / System Application Tests (Default)
|
||
EntityTextCod: Codeunit "Entity Text"; | ||
Facts: Dictionary of [Text, Text]; | ||
Format: Enum "Entity Text Format"; | ||
|
@@ -71,7 +71,7 @@ | |
[Test] | ||
procedure TaglineInspiring() | ||
var | ||
AITestContext: Codeunit "AIT Test Context"; | ||
Check failure on line 74 in src/System Application/Test/EntityText/src/MktTextAccuracyAIT.Codeunit.al GitHub Actions / Build System Application Tests (Default) / System Application Tests (Default)
|
||
EntityTextCod: Codeunit "Entity Text"; | ||
Facts: Dictionary of [Text, Text]; | ||
Format: Enum "Entity Text Format"; | ||
|
@@ -89,7 +89,7 @@ | |
[Test] | ||
procedure TaglineFormal() | ||
var | ||
AITestContext: Codeunit "AIT Test Context"; | ||
Check failure on line 92 in src/System Application/Test/EntityText/src/MktTextAccuracyAIT.Codeunit.al GitHub Actions / Build System Application Tests (Default) / System Application Tests (Default)
|
||
EntityTextCod: Codeunit "Entity Text"; | ||
Facts: Dictionary of [Text, Text]; | ||
Format: Enum "Entity Text Format"; | ||
|
@@ -107,7 +107,7 @@ | |
[Test] | ||
procedure TaglineCreative() | ||
var | ||
AITestContext: Codeunit "AIT Test Context"; | ||
Check failure on line 110 in src/System Application/Test/EntityText/src/MktTextAccuracyAIT.Codeunit.al GitHub Actions / Build System Application Tests (Default) / System Application Tests (Default)
|
||
EntityTextCod: Codeunit "Entity Text"; | ||
Facts: Dictionary of [Text, Text]; | ||
Format: Enum "Entity Text Format"; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,10 @@ | |
|
||
namespace System.Test.EntityText; | ||
|
||
using System.TestTools.AITestToolkit; | ||
Check failure on line 8 in src/System Application/Test/EntityText/src/MktTextRedTeamAIT.Codeunit.al GitHub Actions / Build System Application Tests (Default) / System Application Tests (Default)
Check failure on line 8 in src/System Application/Test/EntityText/src/MktTextRedTeamAIT.Codeunit.al GitHub Actions / Build System Application Tests (Default) / System Application Tests (Default)
Check failure on line 8 in src/System Application/Test/EntityText/src/MktTextRedTeamAIT.Codeunit.al GitHub Actions / Build System Application Tests (Clean) / System Application Tests (Clean)
|
||
using System.Text; | ||
|
||
codeunit 134641 "Mkt Text RedTeam BCCT" | ||
codeunit 134641 "Mkt Text RedTeam AIT" | ||
{ | ||
Subtype = Test; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Check if TestPermissions needs to be set to disabled. |
||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we move the tests to a folder for the time being to distinguish between AIT Tests vs regular tests?
In the near future, we maybe introduce a separate codeunit number range.
The test app is also missing the Suite Configuration (.xml) file.