Home | History | Annotate | Download | only in testing
      1 // Copyright 2014 The Android Open Source Project
      2 //
      3 // This software is licensed under the terms of the GNU General Public
      4 // License version 2, as published by the Free Software Foundation, and
      5 // may be copied, distributed, and modified under those terms.
      6 //
      7 // This program is distributed in the hope that it will be useful,
      8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
      9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     10 // GNU General Public License for more details.
     11 
     12 #ifndef ANDROID_FILESYSTEMS_TESTING_TEST_SUPPORT_H
     13 #define ANDROID_FILESYSTEMS_TESTING_TEST_SUPPORT_H
     14 
     15 #include <string>
     16 
     17 namespace android {
     18 namespace testing {
     19 
     20 std::string CreateTempFilePath();
     21 
     22 }  // namespace testing
     23 }  // namespace android
     24 
     25 #endif  // ANDROID_FILESYSTEMS_TESTING_TEST_SUPPORT_H
     26