func BenchmarkFormamTest1(b *testing.B) {
	b.ReportAllocs()
	for i := 0; i < b.N; i++ {
		test := new(Bench)
		if err := formam.Decode(valuesFormamT1, test); err != nil {
			b.Error(err)
		}
	}
}
func BenchmarkFormamTest2(b *testing.B) {
	b.ReportAllocs()
	for i := 0; i < b.N; i++ {
		test := new(BenchFormamSchema)
		if err := formam.Decode(valFormamT2, test); err != nil {
			b.Error(err)
		}
	}
}