1 /* 2 * Copyright (c) 2021, Arm Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 #ifndef PS_API_TESTS_H 7 #define PS_API_TESTS_H 8 9 /* 10 * API level tests for accessing a secure store via the PSA Protected 11 * Storage API. Test scenarios are intended to be reused with different 12 * storage backends. 13 */ 14 class ps_api_tests 15 { 16 public: 17 18 static void set(); 19 static void createAndSetExtended(); 20 }; 21 22 #endif /* ITS_API_TESTS_H */ 23