From: DoHyun Pyun Date: Wed, 13 May 2020 02:41:11 +0000 (+0900) Subject: [Bluetooth][Manual][Non-ACR][Use the large file for OPP push cancel TC] X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1a15b93b1046fa61ba8e19b5ae4cfc23de02d05f;p=test%2Ftct%2Fcsharp%2Fapi.git [Bluetooth][Manual][Non-ACR][Use the large file for OPP push cancel TC] Change-Id: I7bf1210699ca2856094547d1ac9d2ef243459f06 --- diff --git a/tct-suite-vs/Tizen.Bluetooth.Manual.Tests/shared/res/SampleMP3.mp3 b/tct-suite-vs/Tizen.Bluetooth.Manual.Tests/shared/res/SampleMP3.mp3 new file mode 100644 index 000000000..c608a70de Binary files /dev/null and b/tct-suite-vs/Tizen.Bluetooth.Manual.Tests/shared/res/SampleMP3.mp3 differ diff --git a/tct-suite-vs/Tizen.Bluetooth.Manual.Tests/testcase/TSBluetoothOppClient.cs b/tct-suite-vs/Tizen.Bluetooth.Manual.Tests/testcase/TSBluetoothOppClient.cs index 5cc666b4b..d3ed05846 100755 --- a/tct-suite-vs/Tizen.Bluetooth.Manual.Tests/testcase/TSBluetoothOppClient.cs +++ b/tct-suite-vs/Tizen.Bluetooth.Manual.Tests/testcase/TSBluetoothOppClient.cs @@ -16,6 +16,7 @@ namespace Tizen.Network.Bluetooth.Tests static BluetoothDevice _device = null; static BluetoothOppClient _oppClient = null; private static string filePath = Path.Combine(Application.Current.DirectoryInfo.SharedResource, "test1.jpg"); + private static string largeFilePath = Path.Combine(Application.Current.DirectoryInfo.SharedResource, "SampleMP3.mp3"); static bool isBluetoothOppSupported = false; [SetUp] @@ -294,7 +295,7 @@ namespace Tizen.Network.Bluetooth.Tests _oppClient.PushProgress += EventHandlerPushProgress; - _oppClient.AddFile(filePath); + _oppClient.AddFile(largeFilePath); _oppClient.PushFile(_device.Address);