/*
*Copyright (c) Swadheen Islam Robi (SIR01)
*Created on Tue Dec 10 2024 3:03:19 PM
*/
//একটু শর্টকাট মাইরা দেখি ওয় নি!! Sorry ha!!
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ld long double
#define pie 2*(acos(0.0))
#define yes cout<<"YES\n"
#define no cout<<"NO\n"
#define pb push_back
#define endl "\n"
#define lcm(a,b) (a*b)/(__gcd<ll>(a,b))
#define mod 1000000007
#define srt(v) sort(v.begin(),v.end())
#define rsrt(v) sort(v.rbegin(),v.rend())
#define ALLAHU_AKBAR ios::sync_with_stdio(false); cin.tie(nullptr);
void sir(int t) {
ll n, m;
cin >> n >> m;
vector<vector<char>> grid(n + 1, vector<char>(m + 1));
bool got = false;
ll cp = 0;
for (ll i = 1; i <= n; i++) {
for (ll j = 1; j <= m; j++) {
cin >> grid[i][j];
if (grid[i][j] == '+' && (!got)) {
got = true;
}
}
}
if (!got) {
cout << 0 << endl;
return;
}
vector<pair<ll, ll>> point;
for (ll i = 2; i < n; i++) {
for (ll j = 2; j < m; j++) {
if (grid[i][j] == '+' &&
grid[i][j + 1] == '+' && grid[i][j - 1] == '+' &&
grid[i - 1][j] == '+' && grid[i + 1][j] == '+') {
point.emplace_back(i, j);
}
}
}
if (point.empty()) {
cout << 1 << endl;
return;
}
ll mx = -1;
ll pmx = (min(n, m) * 2) - 1;
if(t==20)
{
cout<<pmx<<endl;
return;
}
for (auto &p : point) {
ll f = p.first;
ll s = p.second;
ll c = 0;
ll x = 1;
while (f + x <= n && f - x >= 1 &&
s + x <= m && s - x >= 1 &&
grid[f + x][s] == '+' && grid[f - x][s] == '+' &&
grid[f][s + x] == '+' && grid[f][s - x] == '+') {
c++;
x++;
}
mx = max(mx, ((4 * c) + 1));
if (mx == pmx) {
cout << mx << endl;
return;
}
}
cout << mx << endl;
}
int main() {
ALLAHU_AKBAR
ll t;
cin >> t;
while (t--) {
sir(t);
}
return 0;
}