Add forgotten file templates.

This commit is contained in:
Greyson Parrelli 2024-08-28 13:05:15 -04:00
parent e55a21ac86
commit b2e14bdc42
2 changed files with 25 additions and 0 deletions

8
.idea/file.template.settings.xml generated Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ExportableFileTemplateSettings">
<default_templates>
<template name="Signal Backup Test Case.kt" file-name="${TEST_NAME}TestCase" reformat="true" live-template-enabled="false" />
</default_templates>
</component>
</project>

View File

@ -0,0 +1,17 @@
@file:Suppress("UNCHECKED_CAST")
package tests
import PermutationScope
import TestCase
import org.thoughtcrime.securesms.backup.v2.proto.Frame
object ${TEST_NAME}TestCase : TestCase("${OUTPUT_FILE_NAME}") {
override fun PermutationScope.execute() {
frames += StandardFrames.MANDATORY_FRAMES
frames += Frame(
)
}
}