summaryrefslogtreecommitdiff
path: root/sdl_android/src/androidTest/java/com/smartdevicelink/test
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Change service listeners to by a list of listenersJoey Grover2017-08-241-0/+50
| |/
* | Fix unit test for updated method nameAustin Kirk2017-08-171-9/+9
| |
* | Refactor SystemCapabilityManager, fix unit test, move initialization of ↵Austin Kirk2017-08-171-3/+15
| | | | | | | | | | | | SdlProxyBase At this point `getCapability()` will cause an unchecked cast warning when requesting a list of capabilities
* | Add unit tests, added Video Streaming key to SystemCapability classAustin Kirk2017-08-143-0/+182
|/
* Merge pull request #577 from smartdevicelink/feature/issue_506Joey Grover2017-08-081-0/+31
|\ | | | | 506 Constructed Payloads
| * Adding new Version class and updating WiProProtocol to use itJoey Grover2017-08-031-0/+31
| |
* | Remove structs not included in rpc_specAustin Kirk2017-08-016-324/+0
| | | | | | | | This includes VideoConfig, SetVideoConfig, SetVideoConfigResponse, and their tests
* | Adding unit tests to cover diff changes, also changed `supportedFormats` to ↵Austin Kirk2017-07-3110-0/+687
|/ | | | be array in VideoStreamingCapability
* Merge pull request #539 from smartdevicelink/feature/issue_486feature/issue_486Joey Grover2017-07-316-5/+265
|\ | | | | Feature/issue 486 - System Capabilities Query
| * Remove Video/Audio Keys & Enums, add OnResponse CallbackAustin Kirk2017-06-162-19/+6
| |
| * Adding Unit TestsAustin Kirk2017-06-095-4/+277
| |
* | Updating TouchTypeTests to not be failingbugfix/touchtype_test_failJoey Grover2017-07-251-6/+11
| |
* | Merge pull request #563 from ↵Joey Grover2017-07-251-1/+53
|\ \ | | | | | | | | | | | | smartdevicelink/feature/sdl_0076_additional_languages Implement SDL 0076 additional languages
| * | adding languagesfeature/sdl_0076_additional_languagesBrettyWhite2017-07-241-1/+53
| |/
* | Merge pull request #538 from smartdevicelink/feature/issue_514Joey Grover2017-07-251-0/+8
|\ \ | | | | | | Feature/issue 514 - Adding two Language enums
| * | Adding two Language Enums and corresponding test languageAustin Kirk2017-06-071-0/+8
| | |
* | | adding HMI type projectionsfeature/mobile_projectionBrettyWhite2017-07-201-2/+6
| |/ |/|
* | Adding more tests cases and ensuring return null on Exception in RPCStructfeature/issue_513Austin Kirk2017-06-082-0/+21
| |
* | Fixing getLong in RPCStruct and adding unit tests for RPCMessage and RPCStructAustin Kirk2017-06-082-0/+278
| | | | | | | | | | - Fixing getLong in RPCStruct and Adding Javadocs - Adding unit tests for RPCMessage and RPCStruct
* | Adding missing import statement for ArrayListAustin Kirk2017-06-071-7/+8
| |
* | Adding Missing Unit Tests for RPCsAustin Kirk2017-06-0718-2/+1489
|/
* Merge pull request #530 from smartdevicelink/bugfix/issue_529Joey Grover2017-06-013-22/+8
|\ | | | | Bugfix/issue_529
| * #463 Fix failing unit tests, get inputStream locallybugfix/issue_529Tuan Nguyen2017-05-263-22/+8
| |
* | #466 Handle inadvertent BT exception when testing with emulator.bugfix/issue_466Tuan Nguyen2017-05-311-7/+11
| |
* | #466 Appropriately fail test case when catching expected exception.Tuan Nguyen2017-05-301-0/+13
| |
* | #466 Add test caseNguyen, Tuan (T.N.)2017-05-241-0/+431
|/
* Fixing the failing unit tests in Emulatorbugfix/unit_emulator_testsAustin Kirk2017-05-195-4/+24
| | | | Adds a DeviceUtil class with isEmulator() function to detect if running in emulator. Aspects like MultiplexBT and BT adapter checks will account for if an emulator is running the test. Changed FTP url in Packetizer tests that was failing in emulator.
* Merge pull request #511 from smartdevicelink/bugfix/utest_SdlChoiceChosenTestsJoey Grover2017-05-161-3/+5
|\ | | | | Editing test to account for non-serializable SdlChoice
| * Editing test to account for non-serializable SdlChoicebugfix/utest_SdlChoiceChosenTestsAustin Kirk2017-05-151-3/+5
| |
* | Merge pull request #497 from ↵Joey Grover2017-05-161-1/+1
|\ \ | | | | | | | | | | | | smartdevicelink/bugfix/utest_SdlDataTypeConverterTests bugfix/utest_SdlDataTypeConverterTests
| * | removed unneeded testbugfix/utest_SdlDataTypeConverterTestsBrettyWhite2017-05-041-1/+1
| | | | | | | | | | | | | | | - it was testing for a null float value even though the SdlDataTypeConverter has a float to double line in there. - added in a valid test case
* | | Adding null checks to BitConverter. Also included better java docs and tests. Austin Kirk2017-05-161-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | * Adding null checks Now returns -1 or null object upon null input array * Fixing Javadocs
* | | Fix MultiplexBluetoothTransport unit testsAustin Kirk2017-05-161-21/+27
| | | | | | | | | | | | | | | | | | | | | - Was previously failing due to need to call Looper.prepare() - The start() call and subsequent check for changed state failed because the BT adapter is not enabled, there are no bluetooth permissions in this library (TODO: find a way to test around that) * Fixing which thread this runs on, and now can test with BT adapter
* | | Fix potential npe in abstractPacketizerTestsBrett2017-05-161-9/+9
| |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * NPE fix in abstract packetizer * switched from null checks to catching exceptions * fixing tests, throwing exceptions when needed * cleaned up test on null packetizer * Formatting please * Fix formatting around catch * illegal argument exception * fixed test * removed not needed var
* | Merge pull request #488 from smartdevicelink/bugfix/utest_diagLevelTestsJoey Grover2017-05-051-1/+1
|\ \ | | | | | | bugfix/utest_diagLevelTests
| * | lots of null pointer checksbugfix/utest_diagLevelTestsBrettyWhite2017-05-041-1/+1
| |/
* | added new enum to list, passing nowbugfix/utest_displayTypeTestsBrettyWhite2017-05-041-16/+20
|/
* added tests for patch versionMat Wszedybyl2017-05-021-2/+7
|
* Move Andorid TestsJoey Grover2017-03-28249-0/+27604