test/tct/csharp/api.git
3 years agoMerge "Merge branch 'tizen' of ssh://review.tizen.org:29418/test/tct/csharp/api into...
Tan Nguyen [Wed, 19 May 2021 09:16:22 +0000 (09:16 +0000)]
Merge "Merge branch 'tizen' of ssh://review.tizen.org:29418/test/tct/csharp/api into tizen" into tizen

3 years agoMerge "Merge branch 'tizen' of ssh://review.tizen.org:29418/test/tct/csharp/api into...
Tan Nguyen [Wed, 19 May 2021 09:16:05 +0000 (09:16 +0000)]
Merge "Merge branch 'tizen' of ssh://review.tizen.org:29418/test/tct/csharp/api into tizen" into tizen

3 years agoMerge branch 'tizen' of ssh://review.tizen.org:29418/test/tct/csharp/api into tizen 96/258496/1
Vu Nhu Anh [Mon, 17 May 2021 20:00:11 +0000 (05:00 +0900)]
Merge branch 'tizen' of ssh://review.tizen.org:29418/test/tct/csharp/api into tizen

Change-Id: I27cd95faebac7f4a13c86bbee1d483e41e6df6b9

3 years agoMerge "[NUI][TCSACR-417] Add Page Navigation API" into tizen
Tan Nguyen [Mon, 17 May 2021 06:07:51 +0000 (06:07 +0000)]
Merge "[NUI][TCSACR-417] Add Page Navigation API" into tizen

3 years agoMerge "[NUI][TCSACR-419] Add DialogPage, Dialog, AlertDialog classes" into tizen
Tan Nguyen [Mon, 17 May 2021 03:00:20 +0000 (03:00 +0000)]
Merge "[NUI][TCSACR-419] Add DialogPage, Dialog, AlertDialog classes" into tizen

3 years agoMerge "[NUI][TCSACR-422] Add Menu, MenuItem classes" into tizen
Tan Nguyen [Mon, 17 May 2021 02:59:22 +0000 (02:59 +0000)]
Merge "[NUI][TCSACR-422] Add Menu, MenuItem classes" into tizen

3 years agoMerge "[NUI][TCSACR-420] Add TabView, TabBar, TabButton, TabContent classes" into...
Tan Nguyen [Mon, 17 May 2021 02:58:59 +0000 (02:58 +0000)]
Merge "[NUI][TCSACR-420] Add TabView, TabBar, TabButton, TabContent classes" into tizen

3 years agoMerge "[NUI][TCSACR-423] Add LayoutParamPolicies (MatchParent, WrapContent)" into...
Tan Nguyen [Mon, 17 May 2021 02:58:20 +0000 (02:58 +0000)]
Merge "[NUI][TCSACR-423] Add LayoutParamPolicies (MatchParent, WrapContent)" into tizen

3 years agoMerge "[NUI][TCSACR-418] Add AppBar class" into tizen
Tan Nguyen [Mon, 17 May 2021 02:57:08 +0000 (02:57 +0000)]
Merge "[NUI][TCSACR-418] Add AppBar class" into tizen

3 years agoMerge "[Nuget][Non-ACR][Updated nuget dlls to latest]" into tizen
Tan Nguyen [Mon, 17 May 2021 02:01:49 +0000 (02:01 +0000)]
Merge "[Nuget][Non-ACR][Updated nuget dlls to latest]" into tizen

3 years agoMerge branch 'tizen' of ssh://review.tizen.org:29418/test/tct/csharp/api into tizen 95/258495/1
Vu Nhu Anh [Fri, 14 May 2021 20:00:11 +0000 (05:00 +0900)]
Merge branch 'tizen' of ssh://review.tizen.org:29418/test/tct/csharp/api into tizen

Change-Id: I302409065f56bfc6a9ce150e83b818ce60d153ab

3 years agoMerge "[TCSACR-412][NUI] Add VectorGraphics testcase" into tizen
Tan Nguyen [Fri, 14 May 2021 11:58:58 +0000 (11:58 +0000)]
Merge "[TCSACR-412][NUI] Add VectorGraphics testcase" into tizen

3 years ago[NUI][TCSACR-422] Add Menu, MenuItem classes 26/258326/4
Jaehyun Cho [Thu, 13 May 2021 12:05:11 +0000 (21:05 +0900)]
[NUI][TCSACR-422] Add Menu, MenuItem classes

File - src/Tizen.NUI.Components/Controls/Menu.cs

  - Class
    [Add] public class Menu

  - Constructor
    [Add] public Menu()

  - Enum
    [Add] public RelativePosition { Start = 0, Center = 1, End = 2 }

  - Property
    [Add] public IEnumerable<MenuItem> Items { get; set; }
    [Add] public View Anchor { get; set; }
    [Add] public RelativePosition HorizontalPositionToAnchor { get; set; }
    [Add] public RelativePosition VerticalPositionToAnchor { get; set; }

File - src/Tizen.NUI.Components/Controls/MenuItem.cs

  - Class
    [Add] public class MenuItem

  - Constructor
    [Add] public MenuItem()

Change-Id: I744eb2609b48dee5a1ab9d1289ebb6e561728a61

3 years ago[NUI][TCSACR-420] Add TabView, TabBar, TabButton, TabContent classes 24/258324/3
Jaehyun Cho [Thu, 13 May 2021 11:47:11 +0000 (20:47 +0900)]
[NUI][TCSACR-420] Add TabView, TabBar, TabButton, TabContent classes

File - src/Tizen.NUI.Components/Controls/TabView.cs

  - Class
    [Add] public class TabView

  - Constructor
    [Add] public TabView()

  - Property
    [Add] public TabBar TabBar { get; }
    [Add] public TabContent Content { get; }

   - Method
    [Add] public void AddTab(TabButton tabButton, View view)
    [Add] public void RemoveTab(int index)

File - src/Tizen.NUI.Components/Controls/TabBar.cs

  - Class
    [Add] public class TabBar

  - Constructor
    [Add] public TabBar()

  - Property
    [Add] public int TabButtonCount { get; }

  - Method
    [Add] public TabButton GetTabButton(int index)

File - src/Tizen.NUI.Components/Controls/TabButton.cs

  - Class
    [Add] public class TabButton

  - Constructor
    [Add] public TabButton()

File - src/Tizen.NUI.Components/Controls/TabContent.cs

  - Class
    [Add] public class TabContent

  - Constructor
    [Add] public TabContent()

  - Property
    [Add] public int ViewCount { get; }

  - Method
    [Add] public View GetView(int index)

Change-Id: Idc11a01cbad6fac3bc4ca35b17601e02cccf0a08

3 years ago[NUI][TCSACR-418] Add AppBar class 01/258301/3
Jaehyun Cho [Thu, 13 May 2021 06:54:48 +0000 (15:54 +0900)]
[NUI][TCSACR-418] Add AppBar class

File - src/Tizen.NUI.Components/Controls/Navigation/AppBar.cs

  - Class
    [Add] public class AppBar

  - Constructor
    [Add] public AppBar()
    [Add] public AppBar(string style)
    [Add] public AppBar(AppBarStyle appBarStyle)

  - Property
    [Add] public bool AutoNavigationContent { get; set; }
    [Add] public string Title { get; set; }
    [Add] public IEnumerable<View> Actions { get; set; }
    [Add] public View NavigationContent { get; set; }
    [Add] public View TitleContent { get; set; }
    [Add] public View ActionContent { get; set; }

   - Method
    [Add] public override void ApplyStyle(ViewStyle viewStyle)

File - src/Tizen.NUI.Components/Controls/Navigation/ContentPage.cs

  - Property
    [Add] public AppBar AppBar { get; set; }

File - src/Tizen.NUI.Components/Style/Navigation/AppBarStyle.cs

  - Class
    [Add] public class AppBarStyle

  - Constructor
    [Add] public AppBarStyle()
    [Add] public AppBarStyle(AppBarStyle appBarStyle)

  - Property
    [Add] public ButtonStyle BackButton { get; set; }
    [Add] public TextLabelStyle TitleTextLabel { get; set; }
    [Add] public ViewStyle ActionView { get; set; }
    [Add] public ButtonStyle ActionButton { get; set; }

   - Method
    [Add] public override void CopyFrom(BindableObject bindableObject)

Change-Id: I96c5a3e9110dae3c6d69cc504d2f42567c318b6e

3 years ago[Nuget][Non-ACR][Updated nuget dlls to latest] 53/258353/1
Vu Nhu Anh [Fri, 14 May 2021 03:22:49 +0000 (12:22 +0900)]
[Nuget][Non-ACR][Updated nuget dlls to latest]

Change-Id: I65e124ac2c48e3648bfcf6299fdddc143f9a84fe

3 years ago[NUI][TCSACR-417] Add Page Navigation API 00/258300/3
Jaehyun Cho [Mon, 10 May 2021 10:02:37 +0000 (19:02 +0900)]
[NUI][TCSACR-417] Add Page Navigation API

File - src/Tizen.NUI.Components/Controls/Navigation/Navigator.cs

  - Property
    [Add] int PageCount{ get; }

   - Method
    [Add] public void Push(Page page)
    [Add] public Page Pop()
    [Add] public Page GetPage(int index)
    [Add] public int IndexOf(Page page)
    [Add] public void Insert(int index, Page page)
    [Add] public void InsertBefore(Page before, Page page)
    [Add] public void Remove(Page page)
    [Add] public void RemoveAt(int index)
    [Add] public Page Peek()
    [Add] public static Navigator GetDefaultNavigator(Window window)

File - src/Tizen.NUI.Components/Controls/Navigation/Page.cs

  - Property

    [Add] public Navigator Navigator { get; }

Change-Id: I2554a5ff620659906a36ad538ad05e7c2297571b
Signed-off-by: Jaehyun Cho <jae_hyun.cho@samsung.com>
3 years ago[NUI][TCSACR-419] Add DialogPage, Dialog, AlertDialog classes 19/258319/2
Jaehyun Cho [Thu, 13 May 2021 11:01:14 +0000 (20:01 +0900)]
[NUI][TCSACR-419] Add DialogPage, Dialog, AlertDialog classes

File - src/Tizen.NUI.Components/Controls/Navigation/DialogPage.cs

  - Class
    [Add] public class DialogPage

  - Constructor
    [Add] public DialogPage()

  - Property
    [Add] public View Content { get; set; }
    [Add] public bool EnableScrim { get; set; }
    [Add] public bool EnableDismissOnScrim { get; set; }
    [Add] public Color ScrimColor { get; set; }
    [Add] protected View Scrim { get; set; }

   - Method
    [Add] public static void ShowDialog(View content)
    [Add] public static void ShowAlertDialog(string title, string message, params View[] actions)

File - src/Tizen.NUI.Components/Controls/Dialog.cs

  - Class
    [Add] public class Dialog

  - Constructor
    [Add] public Dialog()

  - Property
    [Add] public View Content { get; set; }

File - src/Tizen.NUI.Components/Controls/AlertDialog.cs

  - Class
    [Add] public class AlertDialog

  - Constructor
    [Add] public AlertDialog()
    [Add] public AlertDialog(string style)
    [Add] public AlertDialog(AlertDialogStyle alertDialogStyle)

  - Property
    [Add] public string Title { get; set; }
    [Add] public string Message { get; set; }
    [Add] public IEnumerable<View> Actions { get; set; }
    [Add] public View TitleContent { get; set; }
    [Add] public View Content { get; set; }
    [Add] public View ActionContent { get; set; }

 - Method
    [Add] public override void ApplyStyle(ViewStyle viewStyle)

File - src/Tizen.NUI.Components/Style/AlertDialogStyle.cs

  - Class
    [Add] public class AlertDialogStyle

  - Constructor
    [Add] public AlertDialogStyle()
    [Add] public AlertDialogStyle(AlertDialogStyle style)

  - Property
    [Add] public TextLabelStyle TitleTextLabel { get; set; }
    [Add] public TextLabelStyle MessageTextLabel { get; set; }
    [Add] public ViewStyle ActionContent { get; set; }

   - Method
    [Add] public override void CopyFrom(BindableObject bindableObject)

Change-Id: Ifd65c58bdf474d260958d71ec45851f773ea50f3

3 years ago[NUI][TCSACR-423] Add LayoutParamPolicies (MatchParent, WrapContent) 34/258334/1
Jaehyun Cho [Thu, 13 May 2021 12:50:31 +0000 (21:50 +0900)]
[NUI][TCSACR-423] Add LayoutParamPolicies (MatchParent, WrapContent)

File - src/Tizen.NUI/src/public/BaseComponents/ViewEnum.cs

  - Class
    [Add] public static class LayoutParamPolicies

  - Property
    [Add] public const int MatchParent = -1;
    [Add] public const int WrapContent = -2;

Change-Id: I5ebc1e4bc1d97aaec0b7845a61bf98beac46975f

3 years agoMerge "[Telephony][Non-ACR] Modify timer for testing" into tizen
Tan Nguyen [Wed, 12 May 2021 08:54:42 +0000 (08:54 +0000)]
Merge "[Telephony][Non-ACR] Modify timer for testing" into tizen

3 years ago[Telephony][Non-ACR] Modify timer for testing 13/258213/1
Wootak Jung [Wed, 12 May 2021 08:37:04 +0000 (17:37 +0900)]
[Telephony][Non-ACR] Modify timer for testing

Change-Id: I095017f922282c9dacb64bbdd5188d2f8d03ebee
Signed-off-by: Wootak Jung <wootak.jung@samsung.com>
3 years ago[Non-ACR][Tizen.Maps.Manual.Tests] Fix Text on navigation buttons 12/258212/1
chakradhar pogiri [Wed, 12 May 2021 08:22:48 +0000 (13:52 +0530)]
[Non-ACR][Tizen.Maps.Manual.Tests] Fix Text on navigation buttons

Change-Id: I0415b9177e043ea23853f5f310824daa48bc92d2
Signed-off-by: chakradhar pogiri <v.pogiri@samsung.com>
3 years agoMerge "[Non-ACR][AttachPanel] Fix test case EventChanged_EventType_TEST()" into tizen
Tan Nguyen [Wed, 12 May 2021 07:09:40 +0000 (07:09 +0000)]
Merge "[Non-ACR][AttachPanel] Fix test case EventChanged_EventType_TEST()" into tizen

3 years ago[Non-ACR][AttachPanel] Fix test case EventChanged_EventType_TEST() 58/258158/2
Nguyen Thi Luong [Tue, 11 May 2021 10:53:02 +0000 (17:53 +0700)]
[Non-ACR][AttachPanel] Fix test case EventChanged_EventType_TEST()

Change-Id: Iade9652f6c8d1ded3ac5a5148e8c89954174543b

3 years ago[Nuget][Non-ACR][Updated nuget dlls to latest] 69/258169/1
Vu Nhu Anh [Tue, 11 May 2021 20:00:32 +0000 (05:00 +0900)]
[Nuget][Non-ACR][Updated nuget dlls to latest]

Change-Id: I34662a871b3fd56c1c38a115fb3bd03d1a435c8b

3 years ago[TCSACR-412][NUI] Add VectorGraphics testcase 14/256314/6
JunsuChoi [Thu, 1 Apr 2021 05:58:15 +0000 (14:58 +0900)]
[TCSACR-412][NUI] Add VectorGraphics testcase

[Classes]
VectorGraphics.CanvasView
VectorGraphics.Drawable
VectorGraphics.Shape

Change-Id: I90823a1512db3a4814fedc23e439126bd537f112

3 years ago[Non-ACR][Tizen.Maps.Manual.Tests] Fix text view in wearable 19/258119/1
chakradhar pogiri [Tue, 11 May 2021 02:46:12 +0000 (08:16 +0530)]
[Non-ACR][Tizen.Maps.Manual.Tests] Fix text view in wearable

Change-Id: I4e0a31d6fec01dc9e1c53a566df396845d56e469
Signed-off-by: chakradhar pogiri <v.pogiri@samsung.com>
3 years agoMerge "[Multimedia.Manual][Non-ACR] Fix bug when display NotSupported message" into...
Tan Nguyen [Mon, 10 May 2021 11:10:13 +0000 (11:10 +0000)]
Merge "[Multimedia.Manual][Non-ACR] Fix bug when display NotSupported message" into tizen

3 years agoMerge "[Non-ACR][Tizen.Maps.Manual.Tests] resize text and buttons in map view" into...
Tan Nguyen [Mon, 10 May 2021 11:09:47 +0000 (11:09 +0000)]
Merge "[Non-ACR][Tizen.Maps.Manual.Tests] resize text and buttons in map view" into tizen

3 years ago[Non-ACR][Tizen.Maps.Manual.Tests] resize text and buttons in map view 63/258063/5
chakradhar pogiri [Mon, 10 May 2021 04:55:52 +0000 (10:25 +0530)]
[Non-ACR][Tizen.Maps.Manual.Tests] resize text and buttons in map view

Change-Id: Ib540379630595025a3aaa5aaf60a72fef923db37
Signed-off-by: chakradhar pogiri <v.pogiri@samsung.com>
3 years ago[Nsd][Manual][Non-ACR] Fix display issue 92/258092/1
Seonah Moon [Mon, 10 May 2021 10:02:41 +0000 (19:02 +0900)]
[Nsd][Manual][Non-ACR] Fix display issue

Defect: TSDF-1533
Related TC: RegisterService_REGISTER_DNSSD_SERVICE
Description: All Button and text have been cut after tap on Register button

Change-Id: I2f108971032d9d685ef54ed8cce6627386778337

3 years ago[Multimedia.Manual][Non-ACR] Fix bug when display NotSupported message 90/258090/2
Haesu Gwon [Mon, 10 May 2021 09:38:54 +0000 (18:38 +0900)]
[Multimedia.Manual][Non-ACR] Fix bug when display NotSupported message

Change-Id: Ib2196a6624a3a6f7ab595a254eb503f89493188d

3 years ago[ElmSharp] Remove ElmSharp and ElmSharpWearable from CsharpTCT 47/258047/1
Jay Cho [Mon, 10 May 2021 02:20:12 +0000 (11:20 +0900)]
[ElmSharp] Remove ElmSharp and ElmSharpWearable from CsharpTCT

Change-Id: Ife7c1111e8a8a65fd6821c0ddb2e824efebfd629

3 years agoMerge "[NUI][Non-ACR] Fix button text display issue" into tizen
Tan Nguyen [Mon, 10 May 2021 01:56:17 +0000 (01:56 +0000)]
Merge "[NUI][Non-ACR] Fix button text display issue" into tizen

3 years ago[NUI][Non-ACR] Fix button text display issue 89/257989/6
zhouleonlei [Fri, 7 May 2021 09:26:02 +0000 (17:26 +0800)]
[NUI][Non-ACR] Fix button text display issue

https://code.sec.samsung.net/jira/browse/TSDF-1583
All button are not display so cannot perform any action to show log

https://code.sec.samsung.net/jira/browse/TSDF-1597
Logs display wrong

https://code.sec.samsung.net/jira/browse/TSDF-1598
AddIdle button don't display

https://code.sec.samsung.net/jira/browse/TSDF-1595
https://code.sec.samsung.net/jira/browse/TSDF-1596
App often hang or force close when scrolling steps or tap next button in any testcase.

Change-Id: I6536144c297226af2e858973a7fd4d998eb3e7e3

3 years ago[Nuget][Non-ACR][Updated nuget dlls to latest] 25/258025/1
Vu Nhu Anh [Fri, 7 May 2021 20:00:28 +0000 (05:00 +0900)]
[Nuget][Non-ACR][Updated nuget dlls to latest]

Change-Id: I985d2b66197e8671643adf4f3a139ff6056b8ca7

3 years ago[Nuget][Non-ACR][Updated nuget dlls to latest] 35/257935/1
Vu Nhu Anh [Fri, 7 May 2021 01:59:23 +0000 (10:59 +0900)]
[Nuget][Non-ACR][Updated nuget dlls to latest]

Change-Id: I33541d617d0e47d813da28bb995cbace94f5e6bc

3 years agoMerge "[Connection][Non-ACR] Remove incorrect comparision" into tizen
Tan Nguyen [Thu, 6 May 2021 11:45:18 +0000 (11:45 +0000)]
Merge "[Connection][Non-ACR] Remove incorrect comparision" into tizen

3 years ago[Connection][Non-ACR] Remove incorrect comparision 05/257905/2
Cheoleun Moon [Thu, 6 May 2021 07:29:17 +0000 (16:29 +0900)]
[Connection][Non-ACR] Remove incorrect comparision

Change-Id: Ie04878b87b2d008156e5376473c803cfab3409ae
Signed-off-by: Cheoleun Moon <chleun.moon@samsung.com>
3 years ago[System.Usb][Non-ACR] Complement description for Tizen.Usb.Manual.Tests 81/257881/6
Hyotaek Shim [Thu, 6 May 2021 01:24:17 +0000 (10:24 +0900)]
[System.Usb][Non-ACR] Complement description for Tizen.Usb.Manual.Tests

Change-Id: I29dea20d8f34b9c90d6e6b638f15debf5034da4c
Signed-off-by: Hyotaek Shim <hyotaek.shim@samsung.com>
3 years ago[Nuget][Non-ACR][Updated nuget dlls to latest] 84/257884/1
Vu Nhu Anh [Thu, 6 May 2021 01:56:11 +0000 (10:56 +0900)]
[Nuget][Non-ACR][Updated nuget dlls to latest]

Change-Id: Ibac986c0412113108fa93a04d97b888254cf6243

3 years ago[Telephony][Non-ACR] Fix TCT crash issue 79/257879/1
Wootak Jung [Wed, 5 May 2021 22:54:41 +0000 (07:54 +0900)]
[Telephony][Non-ACR] Fix TCT crash issue

Change-Id: Ic68069f29364fe3a9d2557b0205a9b721fc42cc1
Signed-off-by: Wootak Jung <wootak.jung@samsung.com>
3 years agoMerge "[ElmSharp][Non-ACR] Fix typo in instruction" into tizen
Tan Nguyen [Wed, 5 May 2021 02:28:48 +0000 (02:28 +0000)]
Merge "[ElmSharp][Non-ACR] Fix typo in instruction" into tizen

3 years ago[Non-ACR][TtsEngine/SttEngine] Fix test buttons are not cut 57/257857/2
Suyeon Hwang [Tue, 4 May 2021 09:36:38 +0000 (18:36 +0900)]
[Non-ACR][TtsEngine/SttEngine] Fix test buttons are not cut

Change-Id: I44cd10a110beb8a6c78f8f3f7db020ef915e343b
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
3 years agoMerge "[MediaVision][Non-ACR] Fix invalid model parameters" into tizen
Tan Nguyen [Tue, 4 May 2021 03:33:53 +0000 (03:33 +0000)]
Merge "[MediaVision][Non-ACR] Fix invalid model parameters" into tizen

3 years agoMerge "[NUI][Non-ACR] Fix the issue of text displaying abnormal for wearable" into...
Tan Nguyen [Tue, 4 May 2021 03:33:44 +0000 (03:33 +0000)]
Merge "[NUI][Non-ACR] Fix the issue of text displaying abnormal for wearable" into tizen

3 years agoMerge "[NUI][TCSACR-408][Add Slider and Progress properties]" into tizen
Tan Nguyen [Tue, 4 May 2021 03:33:34 +0000 (03:33 +0000)]
Merge "[NUI][TCSACR-408][Add Slider and Progress properties]" into tizen

3 years agoMerge "[Bluetooth][Non-ACR] Fix BluetoothAudio instance creating issue" into tizen
Tan Nguyen [Tue, 4 May 2021 03:33:23 +0000 (03:33 +0000)]
Merge "[Bluetooth][Non-ACR] Fix BluetoothAudio instance creating issue" into tizen

3 years ago[Bluetooth][Non-ACR] Fix BluetoothAudio instance creating issue 26/257826/1
Wootak Jung [Tue, 4 May 2021 00:05:33 +0000 (09:05 +0900)]
[Bluetooth][Non-ACR] Fix BluetoothAudio instance creating issue

Change-Id: I9f279b68df92cfc06522df26c17b605a8668849c
Signed-off-by: Wootak Jung <wootak.jung@samsung.com>
3 years ago[Nuget][Non-ACR][Updated nuget dlls to latest] 85/257785/1
Vu Nhu Anh [Fri, 30 Apr 2021 20:00:40 +0000 (05:00 +0900)]
[Nuget][Non-ACR][Updated nuget dlls to latest]

Change-Id: I0bb43cc7f2ed4b2157a01a26ac90fe7e06c3bc22

3 years ago[NUI][TCSACR-408][Add Slider and Progress properties] 47/257747/1
Seoyeon Kim [Fri, 30 Apr 2021 07:37:51 +0000 (16:37 +0900)]
[NUI][TCSACR-408][Add Slider and Progress properties]

- Progress.IndeterminateImageUrl
- ProgressStyle.IndeterminateImageUrl
- Slider.ThumbImageUrl
- Slider.IsValueShown
- Slider.ValueIndicatorText
- Slider.ValueIndicatorSize
- Slider.ValueIndicatorUrl
- Slider.IsDiscrete
- Slider.DiscreteValue
- SliderStyle.ValueIndicatorText
- SliderStyle.ValueIndicatorImage

Change-Id: Id24b7ba3b77d5eb499e48f099ee9d03b2c733b0c
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
3 years ago[ElmSharp][Non-ACR] Fix typo in instruction 06/257706/1
JoonghyunCho [Fri, 30 Apr 2021 01:54:31 +0000 (10:54 +0900)]
[ElmSharp][Non-ACR] Fix typo in instruction

Change-Id: I634dba8204f9428a42cfe99aed77dd6619be2391

3 years ago[NUI][Non-ACR] Fix the issue of text displaying abnormal for wearable 83/257683/2
zhouleonlei [Thu, 29 Apr 2021 10:06:32 +0000 (18:06 +0800)]
[NUI][Non-ACR] Fix the issue of text displaying abnormal for wearable

https://code.sec.samsung.net/jira/browse/TSDF-1532
All text of button and text of result are not displayed

Change-Id: Ie17bda90189d4f4d347ec2babad3bdb9710daf97

3 years ago[MediaVision][Non-ACR] Fix invalid model parameters 77/257677/1
Tae-Young Chung [Thu, 29 Apr 2021 09:12:59 +0000 (18:12 +0900)]
[MediaVision][Non-ACR] Fix invalid model parameters

Change-Id: If505eb8f9c8ebf5088b494ff6be84782a0ebe485
Signed-off-by: Tae-Young Chung <ty83.chung@samsung.com>
3 years ago[Nuget][Non-ACR][Updated nuget dlls to latest] 71/257671/1
Vu Nhu Anh [Thu, 29 Apr 2021 08:23:15 +0000 (17:23 +0900)]
[Nuget][Non-ACR][Updated nuget dlls to latest]

Change-Id: I8f0fd2c6e3c9af649aeb449e57d1a9eaf3d6f1a4

3 years agoMerge "[Non-ACR][NUI] Fix testhub fails" into tizen
Tan Nguyen [Thu, 29 Apr 2021 08:01:03 +0000 (08:01 +0000)]
Merge "[Non-ACR][NUI] Fix testhub fails" into tizen

3 years ago[Non-ACR][NUI] Fix testhub fails 42/257642/1
Dongsug Song [Thu, 29 Apr 2021 01:07:06 +0000 (10:07 +0900)]
[Non-ACR][NUI] Fix testhub fails

- fix testhub auto tct fails, it only occurs on RPI board
- add delays to cover all profiles

Change-Id: Id0c99c534dc4a468c5bdb890aac25dfc4645a1e1

3 years ago[Nuget][Non-ACR][Updated nuget dlls to latest] 77/257577/1
Vu Nhu Anh [Tue, 27 Apr 2021 20:00:28 +0000 (05:00 +0900)]
[Nuget][Non-ACR][Updated nuget dlls to latest]

Change-Id: I47630aa2752eb949090a1c4411cf3b345333312f

3 years agoMerge "[MediaVision][Non-ACR] Fix a bug of Init() condition in TSPoseLandmarkDetector...
Tan Nguyen [Fri, 23 Apr 2021 01:52:22 +0000 (01:52 +0000)]
Merge "[MediaVision][Non-ACR] Fix a bug of Init() condition in TSPoseLandmarkDetector.cs" into tizen

3 years agoMerge "[Non-ACR][NUI] Fix default theme value of TextLabel" into tizen
Tan Nguyen [Fri, 23 Apr 2021 01:52:14 +0000 (01:52 +0000)]
Merge "[Non-ACR][NUI] Fix default theme value of TextLabel" into tizen

3 years ago[Nuget][Non-ACR][Updated nuget dlls to latest] 26/257326/1
Vu Nhu Anh [Thu, 22 Apr 2021 20:00:25 +0000 (05:00 +0900)]
[Nuget][Non-ACR][Updated nuget dlls to latest]

Change-Id: I0461163f5352bbff0094f755d5fed3e76bdd592b

3 years ago[MediaVision][Non-ACR] Fix a bug of Init() condition in TSPoseLandmarkDetector.cs 69/257269/2
Tae-Young Chung [Thu, 22 Apr 2021 02:06:01 +0000 (11:06 +0900)]
[MediaVision][Non-ACR] Fix a bug of Init() condition in TSPoseLandmarkDetector.cs

In catch(NotSupportedException){}, _pdConfig may be NULL.
Thus, null check of _pdConfig should be done in try{}.

Change-Id: Ib90fffd9d5e149a2958afd7f5438cea42c9e552f
Signed-off-by: Tae-Young Chung <ty83.chung@samsung.com>
3 years ago[Nuget][Non-ACR][Updated nuget dlls to latest] 55/257255/1
Vu Nhu Anh [Wed, 21 Apr 2021 20:00:27 +0000 (05:00 +0900)]
[Nuget][Non-ACR][Updated nuget dlls to latest]

Change-Id: If23df8ece8ca590f1f998e6c932dc30e1464e99f

3 years ago[Non-ACR][NUI] Fix default theme value of TextLabel 06/257206/1
Jiyun Yang [Wed, 21 Apr 2021 06:11:17 +0000 (15:11 +0900)]
[Non-ACR][NUI] Fix default theme value of TextLabel

Default theme is no longer have a TextColor value for TextLabel.
Instead, it defines AutoScrollLoopCount for TextLabel.

Change-Id: Idd326d865d01ac423c354801024db891a9c46c50
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
3 years ago[Nuget][Non-ACR][Updated nuget dlls to latest] 89/257189/1
Vu Nhu Anh [Tue, 20 Apr 2021 20:00:28 +0000 (05:00 +0900)]
[Nuget][Non-ACR][Updated nuget dlls to latest]

Change-Id: I417ca49e72c6a30dd70e5f2409a229f4bf2c2547

3 years agoMerge "[Non-ACR][NUI] Fix build error" into tizen
Tan Nguyen [Tue, 20 Apr 2021 02:20:59 +0000 (02:20 +0000)]
Merge "[Non-ACR][NUI] Fix build error" into tizen

3 years ago[Nuget][Non-ACR][Updated nuget dlls to latest] 30/257130/1
Vu Nhu Anh [Mon, 19 Apr 2021 20:00:28 +0000 (05:00 +0900)]
[Nuget][Non-ACR][Updated nuget dlls to latest]

Change-Id: I14bf2b42ea6039cfba5f2a092dce45fed3af7404

3 years ago[Non-ACR][NUI] Fix build error 91/257091/2
Dongsug Song [Mon, 19 Apr 2021 08:42:44 +0000 (17:42 +0900)]
[Non-ACR][NUI] Fix build error

Change-Id: I2ed054922c97367497fc90738e62ff6635c1811c

3 years agoMerge "[TCSACR-399][Vision] Add pose detection api test" into tizen
Tan Nguyen [Mon, 19 Apr 2021 06:53:06 +0000 (06:53 +0000)]
Merge "[TCSACR-399][Vision] Add pose detection api test" into tizen

3 years ago[Nuget][Non-ACR][Updated nuget dlls to latest] 36/257036/1
Vu Nhu Anh [Fri, 16 Apr 2021 20:00:21 +0000 (05:00 +0900)]
[Nuget][Non-ACR][Updated nuget dlls to latest]

Change-Id: I8fd14de42f6616e9de4301072231424d2052fbbc

3 years ago[TCSACR-399][Vision] Add pose detection api test 00/254200/10
Kwang Son [Fri, 22 Jan 2021 03:14:29 +0000 (12:14 +0900)]
[TCSACR-399][Vision] Add pose detection api test

Change-Id: I27c1a0bb1ba11fc8caa87a7521a1184ddaa3c4da
Signed-off-by: Kwang Son <k.son@samsung.com>
3 years ago[Nuget][Non-ACR][Updated nuget dlls to latest] 25/256925/1
Vu Nhu Anh [Wed, 14 Apr 2021 20:00:31 +0000 (05:00 +0900)]
[Nuget][Non-ACR][Updated nuget dlls to latest]

Change-Id: I52201f19790efeaf18718c18ab5202dde9e33ee0

3 years ago[Nuget][Non-ACR][Updated nuget dlls to latest] 36/256836/1
Vu Nhu Anh [Tue, 13 Apr 2021 20:00:22 +0000 (05:00 +0900)]
[Nuget][Non-ACR][Updated nuget dlls to latest]

Change-Id: I8dd41dc5d5b17d124106902cefd98ca2fab61a44

3 years ago[Nuget][Non-ACR][Updated nuget dlls to latest] 72/256772/1
Vu Nhu Anh [Mon, 12 Apr 2021 20:00:25 +0000 (05:00 +0900)]
[Nuget][Non-ACR][Updated nuget dlls to latest]

Change-Id: I0141e9aba3259e142f4a4bdf951110d37110d8eb

3 years ago[Non-ACR][Tizen.Applications.ComponentPort] Change TizenNETVersion] 27/256727/1
Nguyen Thi Luong [Mon, 12 Apr 2021 03:50:00 +0000 (10:50 +0700)]
[Non-ACR][Tizen.Applications.ComponentPort] Change TizenNETVersion]

Change-Id: Ica2ca36ae2e5c927d272579d29f0d9ebe825ca01

3 years agoMerge "[NUI][TCSACR-403] Add FontSizeScale properties" into tizen
Tan Nguyen [Mon, 12 Apr 2021 02:35:02 +0000 (02:35 +0000)]
Merge "[NUI][TCSACR-403] Add FontSizeScale properties" into tizen

3 years agoMerge "[ComponentBased][Non-ACR][Updated ambiguous instructions]" into tizen
Tan Nguyen [Mon, 12 Apr 2021 02:34:53 +0000 (02:34 +0000)]
Merge "[ComponentBased][Non-ACR][Updated ambiguous instructions]" into tizen

3 years ago[Nuget][Non-ACR][Updated nuget dlls to latest] 65/256665/1
Vu Nhu Anh [Thu, 8 Apr 2021 20:00:32 +0000 (05:00 +0900)]
[Nuget][Non-ACR][Updated nuget dlls to latest]

Change-Id: I84562ca7a8b7f8177c36e8ac2a5de932d7b8d084

3 years ago[ComponentBased][Non-ACR][Updated ambiguous instructions] 95/256595/4
Changgyu Choi [Thu, 8 Apr 2021 00:47:00 +0000 (09:47 +0900)]
[ComponentBased][Non-ACR][Updated ambiguous instructions]

Change-Id: Ief5469afd63586f8c36904cf8a776d8d54c2582d
Signed-off-by: Changgyu Choi <changyu.choi@samsung.com>
3 years agoMerge "[Applications.ComponentBased][TCSACR-406][Update testcase]" into tizen
Tan Nguyen [Wed, 7 Apr 2021 06:39:43 +0000 (06:39 +0000)]
Merge "[Applications.ComponentBased][TCSACR-406][Update testcase]" into tizen

3 years ago[Applications.ComponentBased][TCSACR-406][Update testcase] 78/256078/17
Hwankyu Jhun [Mon, 29 Mar 2021 06:18:01 +0000 (15:18 +0900)]
[Applications.ComponentBased][TCSACR-406][Update testcase]

Adds:
 - WaitForPort_CHECK()
 - Send_CHECK_WITH_IOEXCEPTION()
 - SendAndReceive_CHECK_WITH_IOEXCEPTION()
 - SendAndReceiveAsync_CHECK_WITHOUT_EXCEPTION()
 - SendAndReceiveAsync_CHECK_WITH_ARUMENTEXCEPTION()
 - SendAndReceiveAsync_CHECK_WITH_UNAUTHORIZEDACCESSEXCEPTION()
 - SendAndReceiveAsync_CHECK_WITH_IOEXCEPTION()
 - RequestReceived_CHECK()
 - ComponentTask_INIT()
 - Start_CHECK_RUNNING()
 - Stop_CHECK_RUNNING()
 - IsRunning_CHECK()
 - Port_GET()
 - Sender_GET()
 - Request_GET()
 - IsReplyRequested_CHECK()
 - Reply_SET_AND_GET()

Removes:
 - OnRequestEvent_CHECK()
 - OnSyncRequestEvent_CHECK()

Changes:
 - ComponentPort_INIT()
 - ComponentPort_INIT_WITH_NULL_AND_CHECK_ARGUMENTEXCEPTION()
 - ComponentPort_INIT_WITH_EMPTYSTRING_AND_CHECK_ARGUMENTEXCEPTION()
 - ComponentPort_INIT_AND_CHECK_IOEXCEPTION()
 - SendSync_CHECK_WITHOUT_EXCEPTION()
   => SendAndReceive_CHECK_WITHOUT_EXCEPTION
 - SendSync_CHECK_WITHOUT_EXCEPTION()
   => SendAndReceive_CHECK_WITH_ARGUMENTEXCEPTION()
 - SendSync_CHECK_WITH_UNAUTHORIZEDACCESSEXCEPTION()
   => SendAndReceive_CHECK_WITH_UNAUTHORIZEDACCESSEXCEPTION()

Change-Id: I7571bc0dac759f25d0d1d5fca3e19c035cc12a2e
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
3 years ago[Tizen.MachineLearning.Inference][Non-ACR] Check the privilege 85/256485/3
Sangjung Woo [Mon, 5 Apr 2021 08:09:35 +0000 (17:09 +0900)]
[Tizen.MachineLearning.Inference][Non-ACR] Check the privilege

If Privilege API is not supported on the target device,
Pipeline_INIT_CHECK_UnauthorizedAccessException test case should be
passed.

Change-Id: I456661dee90f229394a1e151b049b57648639ad8
Signed-off-by: Sangjung Woo <sangjung.woo@samsung.com>
3 years agoMerge "[NUI][Non-ACR] Fix the app launching issues for NUI.Manual.Tests" into tizen
Tan Nguyen [Mon, 5 Apr 2021 01:56:08 +0000 (01:56 +0000)]
Merge "[NUI][Non-ACR] Fix the app launching issues for NUI.Manual.Tests" into tizen

3 years ago[Nuget][Non-ACR][Updated nuget dlls to latest] 54/256454/1
Vu Nhu Anh [Sat, 3 Apr 2021 20:00:24 +0000 (05:00 +0900)]
[Nuget][Non-ACR][Updated nuget dlls to latest]

Change-Id: I21044ba0f52ad0d6f59823ac5e8689b83645397a

3 years ago[NUI][Non-ACR] Fix the app launching issues for NUI.Manual.Tests 32/256332/2
zhouleonlei [Thu, 1 Apr 2021 07:19:53 +0000 (15:19 +0800)]
[NUI][Non-ACR] Fix the app launching issues for NUI.Manual.Tests

https://code.sec.samsung.net/jira/browse/TSDF-961
LaunchRejectedException occurs in all Log related tcs

Change-Id: I9ebedca4dbf6f2fb7fb1cf6f415f3fa2a99a4351

3 years agoMerge "[ComponentBased][Manual][TCSACR-400] Add test for WidgetComponent" into tizen
Tan Nguyen [Tue, 30 Mar 2021 02:48:09 +0000 (02:48 +0000)]
Merge "[ComponentBased][Manual][TCSACR-400] Add test for WidgetComponent" into tizen

3 years agoMerge "[MediaController][Non-ACR] Fix deadlock issue" into tizen
Tan Nguyen [Tue, 30 Mar 2021 02:47:53 +0000 (02:47 +0000)]
Merge "[MediaController][Non-ACR] Fix deadlock issue" into tizen

3 years ago[Nuget][Non-ACR][Updated nuget dlls to latest] 33/256033/1
Vu Nhu Anh [Fri, 26 Mar 2021 20:00:33 +0000 (05:00 +0900)]
[Nuget][Non-ACR][Updated nuget dlls to latest]

Change-Id: Ia059049d57f4c8052a4b552617f923db5dce90ca

3 years ago[MediaController][Non-ACR] Fix deadlock issue 93/255993/1
Haesu Gwon [Fri, 26 Mar 2021 07:39:03 +0000 (16:39 +0900)]
[MediaController][Non-ACR] Fix deadlock issue

Change-Id: I5b8685bd43dc3bc09b215b333f437f49de67164a

3 years ago[Nuget][Non-ACR][Updated nuget dlls to latest] 68/255968/1
Vu Nhu Anh [Thu, 25 Mar 2021 20:00:25 +0000 (05:00 +0900)]
[Nuget][Non-ACR][Updated nuget dlls to latest]

Change-Id: I8437ff9969320758a5321a3197a3943bd0b98f72

3 years ago[Non-ACR][WindowSystem] Fix build error 14/255814/1
Dongsug Song [Wed, 24 Mar 2021 04:29:47 +0000 (13:29 +0900)]
[Non-ACR][WindowSystem] Fix build error

Change-Id: Ia26ff764fc3efe05b89c71fe2296158e567c5179

3 years agoMerge "[Inputmethod][Non-ACR] Update tpk files to improve coverage" into tizen
Tan Nguyen [Tue, 23 Mar 2021 09:02:31 +0000 (09:02 +0000)]
Merge "[Inputmethod][Non-ACR] Update tpk files to improve coverage" into tizen

3 years ago[Non-ACR][Applications.Service.Manual] Add suite Applications.Service.Manual.Tests... 24/255724/1
Nguyen Thi Luong [Tue, 23 Mar 2021 04:18:06 +0000 (11:18 +0700)]
[Non-ACR][Applications.Service.Manual] Add suite Applications.Service.Manual.Tests to CSharpTCT.sln file

Change-Id: If460c36355dfb57ff94a6e846f28d1a694d70f6d

3 years ago[Inputmethod][Non-ACR] Update tpk files to improve coverage 55/255655/2
InHong Han [Mon, 22 Mar 2021 06:28:45 +0000 (15:28 +0900)]
[Inputmethod][Non-ACR] Update tpk files to improve coverage

Change-Id: Ia63d2c0430471deca2e45d19f077203d40260218

3 years ago[Nuget][Non-ACR][Updated nuget dlls to latest] 22/255622/1
Vu Nhu Anh [Fri, 19 Mar 2021 20:00:21 +0000 (05:00 +0900)]
[Nuget][Non-ACR][Updated nuget dlls to latest]

Change-Id: I5c8c3187f11da08a07e134c9e19cb93dc776fbb6

3 years ago[ComponentBased][Manual][TCSACR-400] Add test for WidgetComponent 26/254426/13
Changgyu Choi [Wed, 3 Mar 2021 01:48:13 +0000 (10:48 +0900)]
[ComponentBased][Manual][TCSACR-400] Add test for WidgetComponent

This patch is check lifecycle of widget component.

Change-Id: Idc7b42c34ecf0c2a35a638141d2ea58ab9029bf7
Signed-off-by: Changgyu Choi <changyu.choi@samsung.com>
3 years ago[Nuget][Non-ACR][Updated nuget dlls to latest] 61/255461/1
Vu Nhu Anh [Thu, 18 Mar 2021 20:00:20 +0000 (05:00 +0900)]
[Nuget][Non-ACR][Updated nuget dlls to latest]

Change-Id: Ibfa578c023f746f0571ebe73e6cce32c0c52bd43

3 years ago[Nuget][Non-ACR][Updated nuget dlls to latest] 81/255381/1
Vu Nhu Anh [Wed, 17 Mar 2021 20:00:27 +0000 (05:00 +0900)]
[Nuget][Non-ACR][Updated nuget dlls to latest]

Change-Id: I8cd5fdb1e422abb01e5a918a8a4cc527a9fca6dd

3 years ago[Nuget][Non-ACR][Updated nuget dlls to latest] 18/255318/1
Vu Nhu Anh [Tue, 16 Mar 2021 20:00:19 +0000 (05:00 +0900)]
[Nuget][Non-ACR][Updated nuget dlls to latest]

Change-Id: If5a8195291aa1dd254914cdb6b9d8f9cdde8bb8b

3 years agoMerge "[Nuget][Non-ACR][Updated nuget dlls to latest]" into tizen
Tan Nguyen [Thu, 11 Mar 2021 04:00:20 +0000 (04:00 +0000)]
Merge "[Nuget][Non-ACR][Updated nuget dlls to latest]" into tizen