-
Notifications
You must be signed in to change notification settings - Fork 3
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
addition of new sysadmin scenarios #9
base: develop
Are you sure you want to change the base?
Conversation
/** | ||
* Test Runner to execute required test cases. Add @Required tag on the scenario. | ||
*/ | ||
@RunWith(Cucumber.class) |
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.
Do we already have a TestRunner ?
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.
Yes we already have added TestRunner and now added the TestRunnerRequired file as well
cdap-e2e-tests/src/e2e-test/features/systemadmin/SysAdminRunTime.feature
Outdated
Show resolved
Hide resolved
@Sysadmin | ||
Scenario:To verify user should be able to create Namespace successfully in System Admin | ||
Given Open Datafusion Project to configure pipeline | ||
Then Open "System Admin" menu |
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.
Try using When statements in scenario outlines for all features .
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.
Changed to When Statement.
@@ -3,3 +3,13 @@ clientUrl=http://localhost:11011 | |||
serverUrl=https://placeholder.com/api | |||
# command to generate token: gcloud auth print-access-token | |||
serverAccessToken=placeholder | |||
|
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.
remove space
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.
Since we are starting the properties which are added for sysadmin section line space is provided.
7fbd144
to
4f077f0
Compare
addition of new sysadmin scenarios