Get() public method

public Get ( string key ) : string
key string
return string
		public void TestReload()
		{
			_service.Set(TestPathKey, "xyz");

			var service2 = new JsonLabelService(_fileSystem);
			var name = service2.Get(TestPathKey);
			Assert.AreEqual("xyz", name);
		}