-
Notifications
You must be signed in to change notification settings - Fork 254
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[NUI] Make View.TooltipText return valid value
Let we remove useless error message + Make getter return valid setting value for View.TooltipText property. Signed-off-by: Eunki, Hong <[email protected]>
- Loading branch information
Eunki, Hong
committed
Oct 18, 2023
1 parent
9ee2950
commit 2a3ec42
Showing
2 changed files
with
35 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -207,5 +207,24 @@ public void ColorBlue_GET_SET_VALUE() | |
|
||
testView.Dispose(); | ||
} | ||
|
||
|
||
[Test] | ||
[Category("P1")] | ||
[Description("Get value test for View.ToolTipText")] | ||
[Property("SPEC", "Tizen.NUI.BaseComponents.View.ToolTipText")] | ||
[Property("SPEC_URL", "-")] | ||
[Property("CRITERIA", "PRW")] | ||
[Property("AUTHOR", "[email protected]")] | ||
public void ToolTipText_GET_SET_VALUE() | ||
{ | ||
/* TEST CODE */ | ||
View testView = new View(); | ||
|
||
testView.TooltipText = "tooltipText"; | ||
Assert.AreEqual("tooltipText", testView.TooltipText, "Should get equal string value what we set before"); | ||
|
||
testView.Dispose(); | ||
} | ||
} | ||
} |